cppcheck/test/testsuites/danmar-verify/uninit.c

8 lines
63 B
C
Raw Normal View History

void foo() {
int a[10];
a[0] = 0;
return a[2];
}