Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
82e0945f3d2e4f09f4768317fa9ab7cb15d03b0d
/
.
/
test
/
Analysis
/
outofbound.c
blob: e496425eb91afeb78d9515a3ee164d7bbb0a88bf [
file
] [
log
] [
blame
]
// RUN: clang -analyze -checker-simple -analyzer-store-region -verify %s
char
f1
()
{
char
*
s
=
"abcd"
;
char
c
=
s
[
4
];
// no-warning
return
s
[
5
]
+
c
;
// expected-warning{{Load or store into an out-of-bound memory position.}}
}