summaryrefslogtreecommitdiff
path: root/clang/test/Sema/arg-scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Sema/arg-scope.c')
-rw-r--r--clang/test/Sema/arg-scope.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Sema/arg-scope.c b/clang/test/Sema/arg-scope.c
new file mode 100644
index 0000000..ed92619
--- /dev/null
+++ b/clang/test/Sema/arg-scope.c
@@ -0,0 +1,5 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+void aa(int b, int x[sizeof b]) {}
+
+void foo(int i, int A[i]) {}
+