int main() {
int[10] a; int[5] b; int c; int d; int e; int[15] f; c = 10; d = 5;
e = c + d; /* Legal */
f[1] = 1;
return 0; }