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
/
legacy-implementation-1.m
blob
e9abb87f041edb178c6e147adc733c27b29ce5bd
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
4
@end
5
6
INTF* pi;
7
8
INTF* FUNC()
9
{
10
return pi;
11
}