summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/objc_category.h
blob: b8e60d5fa9c77ea79aa5eaeab26bce3590ccadbb (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: -- -x objective-c
// bindgen-osx-only

@interface Foo
-(void)method;
@end

@interface Foo (BarCategory)
-(void)categoryMethod;
@end