Skip to content

Instantly share code, notes, and snippets.

View cesteban's full-sized avatar

César Estébanez Tascón cesteban

View GitHub Profile
// clang -o test-proto -Wall -framework Foundation -fmodules -fobjc-arc test-proto.m && test
@import Foundation;
@protocol A <NSObject>
@property (nonatomic, copy, readonly) NSString *a;
@end
@protocol B <A>
@property (nonatomic, copy, readonly) NSString *b;