brintos

brintos / llvm-project-archived public Read only

0
0
Text · 206 B · 38c06ec Raw
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