diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-05-12 17:54:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 17:54:17 +0200 |
commit | fcc10961dbfe128d2e592cb302316122938d7b58 (patch) | |
tree | 169787cd659bcd8c41f801e5342850c62fa00b79 /tests/headers/objc_inheritance.h | |
parent | ee2f289a2d57e4d67fe38d060f0c93e9ab866183 (diff) | |
parent | 1f324cabfc24042903002e1f2cf1530ee8818942 (diff) |
Merge pull request #1750 from simlay/objc-inheritance
Objective-c inheritance support
Diffstat (limited to 'tests/headers/objc_inheritance.h')
-rw-r--r-- | tests/headers/objc_inheritance.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/headers/objc_inheritance.h b/tests/headers/objc_inheritance.h new file mode 100644 index 00000000..8f96e45b --- /dev/null +++ b/tests/headers/objc_inheritance.h @@ -0,0 +1,11 @@ +// bindgen-flags: --objc-extern-crate -- -x objective-c +// bindgen-osx-only + +@interface Foo +@end + +@interface Bar: Foo +@end + +@interface Baz: Bar +@end |