aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/proto-lossage-2.mm
blob: 12ec9c7b6f9f328891214408dced55012e514661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* APPLE LOCAL file mainline */
/* Don't forget to look in protocols if a class (and its superclasses) do not
   provide a suitable method.  */
/* { dg-do compile } */

#include <objc/Object.h>

@protocol Zot
-(void) zot;
@end

@interface Foo : Object <Zot>
@end

int foo()
{
	Foo *f=nil;
	[f zot]; /* There should be no warnings here! */
	return 0;
}