brintos

brintos / llvm-project-archived public Read only

0
0
Text · 235 B · 37ec1f3 Raw
18 lines · plain
1@import Umbrella;2 3@interface Bar : Foo4+(instancetype)init;5@end6 7@implementation Bar8+(instancetype)init {9  return [super init];10}11@end12 13int main(int argc, char **argv) {14  id bar = [Bar new];15  [bar i]; // break here16  return 0;17}18