aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/predefined-function.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/predefined-function.c')
-rw-r--r--test/Sema/predefined-function.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Sema/predefined-function.c b/test/Sema/predefined-function.c
index bca25fb995..80b5ab0c6b 100644
--- a/test/Sema/predefined-function.c
+++ b/test/Sema/predefined-function.c
@@ -1,5 +1,9 @@
// RUN: clang -fsyntax-only -verify -pedantic %s
-
+
+char *funk(int format);
+enum Test {A=-1};
+char *funk(enum Test x);
+
int foo();
int foo()
{