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
/
CodeGen
/
avr
/
objc-property.m
blob
a3eaea2e0375a5fc160cdfaa11af1f63ab314b37
1
// RUN: %clang_cc1 -triple avr -emit-llvm -fobjc-runtime=macosx %s -o /dev/null
2
3
__attribute__((objc_root_class))
4
@interface Foo
5
6
@property(strong) Foo *f;
7
8
@end
9
10
@implementation Foo
11
12
@synthesize f = _f;
13
14
@end