blob: 38c06ec18be0e196f92874a8171854c5f6eb24c0 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
@end
INTF* pi;
INTF* FUNC(void)
{
return pi;
}