aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/avr/objc-property.m
blob: a3eaea2e0375a5fc160cdfaa11af1f63ab314b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 -triple avr -emit-llvm -fobjc-runtime=macosx %s -o /dev/null

__attribute__((objc_root_class))
@interface Foo

@property(strong) Foo *f;

@end

@implementation Foo

@synthesize f = _f;

@end