Files
gcc-problem-matcher/test/generate_warnings.c
2023-03-16 11:15:15 +01:00

18 lines
165 B
C

x;
bad_code(float n) {
int small[3];
char index = 10;
x = small[index];
return bad_code(x);
}
main() {
printf("%f %s", bad_code(1.0f));
}