aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/PR7218.c
blob: 10a75c98e515629bcb68c2213454f8e821634241 (plain) (blame)
1
2
3
4
5
6
// RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-store region -verify %s
char PR7218(char a) {
    char buf[2];
    buf[0] = a;
    return buf[1]; // expected-warning {{Undefined or garbage value returned to caller}}
}