1// RUN: %clang_cc1 -fsyntax-only -verify %s
2// expected-no-diagnostics
3void aa(int b, int x[sizeof b]) {}
4
5void foo(int i, int A[i]) {}
6
7