hanchenye-llvm-project/clang/test/Sema/objc-legacy-implementation-1.m

12 lines
176 B
Mathematica
Raw Normal View History

// RUN: clang -fsyntax-only -verify %s
@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
@end
INTF* pi;
INTF* FUNC()
{
return pi;
}