DEBSOURCES
Skip Quicknav
sources / smlnj / 110.79-8 / ckit / regression / valid-programs / a63.c
123456789101112
void f(int x[4]); main () { int y[4]; f(y); } void f(int x[4]) { int *y; x = y; x[3] = 1; }