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

@interface Foo<__covariant ObjectType>
- (ObjectType)get;
@end

@interface FooMultiGeneric<__covariant KeyType, __covariant ObjectType>
- (nullable ObjectType)objectForKey:(KeyType)key;
@end