diff options
Diffstat (limited to 'bindgen-tests/tests/headers/objc_protocol_inheritance.h')
-rw-r--r-- | bindgen-tests/tests/headers/objc_protocol_inheritance.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/objc_protocol_inheritance.h b/bindgen-tests/tests/headers/objc_protocol_inheritance.h new file mode 100644 index 00000000..13135fdd --- /dev/null +++ b/bindgen-tests/tests/headers/objc_protocol_inheritance.h @@ -0,0 +1,11 @@ +// bindgen-flags: -- -x objective-c +// bindgen-osx-only + +@protocol Foo +@end + +@interface Foo <Foo> +@end + +@interface Bar : Foo +@end |