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