llvm-for-llvmta/tools/clang/test/Analysis/PR7218.c
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

7 lines
230 B
C

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