summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/objc_method_clash.h
diff options
context:
space:
mode:
Diffstat (limited to 'bindgen-tests/tests/headers/objc_method_clash.h')
-rw-r--r--bindgen-tests/tests/headers/objc_method_clash.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/objc_method_clash.h b/bindgen-tests/tests/headers/objc_method_clash.h
new file mode 100644
index 00000000..d99d3691
--- /dev/null
+++ b/bindgen-tests/tests/headers/objc_method_clash.h
@@ -0,0 +1,7 @@
+// bindgen-flags: -- -x objective-c
+// bindgen-osx-only
+
+@interface Foo
++ (void)foo;
+- (void)foo;
+@end