• 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 C {
5  int _base;
6}
7@property int base;
8@end
9
10@implementation C
11@synthesize base = _base;
12@end
13
14void foo(C *cptr) {}
15