2 test programs I had lying around here
[cparser] / parsetest / shouldfail / char_index.c
1 int main() {
2         char c = 5;
3         int t [] = {1,2};
4         return t[c];
5 }