repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
legacy-implementation-1.m
blob
38c06ec18be0e196f92874a8171854c5f6eb24c0
1
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2
3
@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
4
@end
5
6
INTF* pi;
7
8
INTF* FUNC(void)
9
{
10
return pi;
11
}