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