aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/function.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/function.c')
-rw-r--r--test/Sema/function.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Sema/function.c b/test/Sema/function.c
index 3f6ad96637..34e523586c 100644
--- a/test/Sema/function.c
+++ b/test/Sema/function.c
@@ -3,6 +3,9 @@
void f(double a[restrict][5]); // should promote to restrict ptr.
void f(double (* restrict a)[5]);
+int foo (__const char *__path);
+int foo(__const char *__restrict __file);
+
void g(int (*)(const void **, const void **));
void g(int (*compar)()) {
}