aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/outofbound.c
blob: 568f14329e9b8efc986466f5b5d0b1a299807b54 (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: clang-cc -analyze -checker-cfref -analyzer-store=region -verify %s
// XFAIL

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.}}
}