25 lines · cpp
1// RUN: %clang_cc1 -emit-llvm -debug-info-kind=standalone -triple x86_64-apple-darwin %s -o - | FileCheck %s2 3class Test4{5public:6 Test () : reserved (new data()) {}7 8 unsigned9 getID() const10 {11 return reserved->objectID;12 }13protected:14 struct data {15 unsigned objectID;16 };17 data* reserved;18};19 20Test t;21 22// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "data"23// CHECK: !DIDerivedType(tag: DW_TAG_pointer_type24// CHECK-NOT: !DICompositeType(tag: DW_TAG_structure_type, name: "data"25