• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 -fobjc-default-synthesize-properties -masm-verbose -S -g %s -o - | FileCheck %s
2
3// CHECK: AT_APPLE_property_name
4// CHECK-NOT: AT_APPLE_property_getter
5// CHECK-NOT: AT_APPLE_property_setter
6// CHECK: AT_APPLE_property_attribute
7// CHECK: AT_APPLE_property
8
9
10@interface I1
11@property int p1;
12@end
13
14@implementation I1
15@end
16
17void foo(I1 *ptr) {}
18