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

#include "../objc-obj-c++-shared/Object1.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;
}