summaryrefslogtreecommitdiffstats
path: root/test/Sema/warn-shadow.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/warn-shadow.c')
-rw-r--r--test/Sema/warn-shadow.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Sema/warn-shadow.c b/test/Sema/warn-shadow.c
index c9a783b..a112210 100644
--- a/test/Sema/warn-shadow.c
+++ b/test/Sema/warn-shadow.c
@@ -43,3 +43,8 @@ void test3(void) {
void test4(int i) { // expected-warning {{declaration shadows a variable in the global scope}}
}
+
+// Don't warn about shadowing for function declarations.
+void test5(int i);
+void test6(void (*f)(int i)) {}
+void test7(void *context, void (*callback)(void *context)) {}
OpenPOWER on IntegriCloud