The Nest
Explore
Sign in
nuudlman
llvm
clang
test
Analysis
scan-build
Inputs
single_null_dereference.c
0
Compiler projects using llvm
Code
Changes
Tags
Discussions
main
int
main
(
)
{
int
*
p
=
0
;
*
p
=
7
;
//
We expect a diagnostic about this.
return
0
;
}