aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/legacy-implementation-1.m
blob: 38c06ec18be0e196f92874a8171854c5f6eb24c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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;
}