Zhongxing Xu | 20f0178 | 2008-11-24 02:19:49 +0000 | [diff] [blame] | 1 | // RUN: clang -checker-simple -analyzer-store-region -verify %s |
2 | |||||
3 | char f1() { | ||||
4 | char* s = "abcd"; | ||||
5 | return s[4]; // expected-warning{{Load or store into an out-of-bound memory position.}} | ||||
6 | } |