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

8 lines
62 B
C
Raw Normal View History

2019-12-30 21:18:32 +01:00
int foo() {
int a[10];
a[0] = 0;
return a[2];
}