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