Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
6bb31e42076f192f01e92b83297500f62b5eb94c
/
.
/
test
/
Analysis
/
misc-ps-cxx0x.cpp
blob: f21e82c4bcb43c219b0a0cc43b81275a4cb858ac [
file
] [
log
] [
blame
]
// RUN: %clang --analyze -std=c++0x %s -Xclang -verify
void
test_static_assert
()
{
static_assert
(
sizeof
(
void
*)
==
sizeof
(
void
*),
"test_static_assert"
);
}
void
test_analyzer_working
()
{
int
*
p
=
0
;
*
p
=
0xDEADBEEF
;
// expected-warning {{null}}
}