blob: 63768ffb50ea27e3ab9c561ddbbc5ca32442bb67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: clang-cc -fsyntax-only -verify %s
@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
@end
INTF* pi;
INTF* FUNC()
{
return pi;
}
|