blob: 7728b68e28e99ee0827876358410c256d45e9d2f [file] [log] [blame]
__attribute__((objc_root_class))
@interface Root {
Class isa;
}
@end
@interface A<T,U> : Root
@end
@interface B<T,U> : A<T,U>
typedef void (*BCallback)(T, U);
+ (id) newWithCallback: (BCallback) callback;
@end