aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/arg-scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/arg-scope.c')
-rw-r--r--test/Sema/arg-scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/arg-scope.c b/test/Sema/arg-scope.c
index c1cc7e112f88..d5e59603cfbf 100644
--- a/test/Sema/arg-scope.c
+++ b/test/Sema/arg-scope.c
@@ -1,5 +1,5 @@
// RUN: clang-cc -fsyntax-only -verify %s
-int aa(int b, int x[sizeof b]) {}
+void aa(int b, int x[sizeof b]) {}
void foo(int i, int A[i]) {}