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
/
undef-class-property-error.m
blob
e7e5db41efbed58308be31b6f3cc8fcc2ad598d1
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
@implementation I (C) // expected-error {{cannot find interface declaration for 'I'}}
4
5
+ (void)f {
6
self.m; // expected-error {{member reference base type 'Class' is not a structure or union}}
7
}
8
9
@end