summaryrefslogtreecommitdiff
path: root/tests/headers/objc_template.h
blob: a4d0055c16c91f311a9b4391485a9c7c9689922d (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --objc-extern-crate -- -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