summaryrefslogtreecommitdiffstats
path: root/test/Sema/arg-scope.c
blob: 3de672be9f7d3ed0c58f8243be70573e0eca20ec (plain)
1
2
3
4
5
6
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
void aa(int b, int x[sizeof b]) {}

void foo(int i, int A[i]) {}