1 // RUN: %clang_cc1 -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
3 // Both properties should be emitted as having a class and an instance property
4 // with the same name is allowed.
6 // CHECK: !DIObjCProperty(name: "p1"
7 // CHECK-SAME: line: [[@LINE+1]]
9 // CHECK: !DIObjCProperty(name: "p1"
10 // CHECK-SAME: line: [[@LINE+1]]
11 @property(class) int p1;