Files
third_party_rust_bindgen/tests/headers/objc_template.h
T
Mikko Lehtonen f8b7761ba3 objc: Handle template params
The objetive-c template type params were handled as Typedefs so every
interface generated its own, clashing in the namespace. This now maps them to id.
2017-05-03 00:54:14 +03:00

7 lines
140 B
Objective-C

// bindgen-flags: --objc-extern-crate -- -x objective-c
// bindgen-osx-only
@interface Foo<__covariant ObjectType>
- (ObjectType)get;
@end