xref
: /
llvm-project
/
clang
/
test
/
Analysis
/
scan-build
/
Inputs
/
single_null_dereference.c
(revision 5521236a18074584542b81fd680158d89a845fca)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
main()
1
int
main
() {
2
int
*
p
= 0;
3
*
p
=
7
;
// We expect a diagnostic about this.
4
return
0;
5
}
6