brintos

brintos / llvm-project-archived public Read only

0
0
Text · 210 B · a3eaea2 Raw
15 lines · plain
1// RUN: %clang_cc1 -triple avr -emit-llvm -fobjc-runtime=macosx %s -o /dev/null2 3__attribute__((objc_root_class))4@interface Foo5 6@property(strong) Foo *f;7 8@end9 10@implementation Foo11 12@synthesize f = _f;13 14@end15