xref: /llvm-project/clang/test/CodeGen/avr/objc-property.m (revision dd9f7963e434a53e8d70f607392ee9abf76f1d99)
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
15