12 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s2 3@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}4@end5 6INTF* pi;7 8INTF* FUNC(void)9{10 return pi;11}12 1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s2 3@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}4@end5 6INTF* pi;7 8INTF* FUNC(void)9{10 return pi;11}12