brintos

brintos / llvm-project-archived public Read only

0
0
Text · 276 B · 3731fb0 Raw
14 lines · plain
1// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.5 | FileCheck  %s2 3// Regression test: check that we don't crash when referencing a forward-declared protocol.4@protocol P;5 6@interface I <P>7@end8 9@implementation I10 11@end12 13// CHECK: @.objc_protocol14