blob: d86b7c7a5eba06f4258ae1e7f28c0311cb4e9dd3 [file] [log] [blame]
Devang Patelfa936d82011-04-16 00:12:55 +00001// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
2
3// CHECK: AT_APPLE_property_name
4@interface I1 {
5int p1;
6}
7@property int p1;
8@end
9
10@implementation I1
11@synthesize p1;
12@end