• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// 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
13