arg-scope.c revision 04421087832a031c90bd58f128c7c0e741db8dd2
1// RUN: clang -fsyntax-only -verify %s
2int aa(int b, int x[sizeof b]) {}
3
4void foo(int i, int A[i]) {}
5
6