blob: 76434471d149eec3456636df68b4c62fde6bcc59 [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
@end
INTF* pi;
INTF* FUNC()
{
return pi;
}