blob: 953075fe03d79be9a81748e7173dba45a275af61 (
plain)
1
2
3
4
5
6
7
|
// RUN: clang-cc -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.}}
}
|