forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			535 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			535 B
		
	
	
	
		
			C++
		
	
	
	
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=standalone -triple x86_64-apple-darwin %s -o - | FileCheck %s
 | 
						|
 | 
						|
class Test
 | 
						|
{
 | 
						|
public:
 | 
						|
    Test () : reserved (new data()) {}
 | 
						|
 | 
						|
    unsigned
 | 
						|
    getID() const
 | 
						|
    {
 | 
						|
        return reserved->objectID;
 | 
						|
    }
 | 
						|
protected:
 | 
						|
    struct data {
 | 
						|
        unsigned objectID;
 | 
						|
    };
 | 
						|
    data* reserved;
 | 
						|
};
 | 
						|
 | 
						|
Test t;
 | 
						|
 | 
						|
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "data"
 | 
						|
// CHECK: !DIDerivedType(tag: DW_TAG_pointer_type
 | 
						|
// CHECK-NOT: !DICompositeType(tag: DW_TAG_structure_type, name: "data"
 |