repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjC
/
protocol-id-test-2.m
blob
a9365e9cb9327a8b71eb036b4e1a2aba523438e1
1
// RUN: %clang_cc1 -verify %s
2
3
@protocol P
4
@end
5
6
@interface INTF<P>
7
- (void)IMeth;
8
@end
9
10
@implementation INTF
11
- (void)IMeth { [(id<P>)self Meth]; } // expected-warning {{method '-Meth' not found (return type defaults to 'id')}}
12
@end