brintos

brintos / llvm-project-archived public Read only

0
0
Text · 251 B · aeafb8e Raw
22 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- (id)foo;7- (id)bar;8 9@end10 11@implementation Foo12 13- (id)foo {14  return self;15}16 17- (id)bar {18  return [self foo];19}20 21@end22