113d7a706SAmjad Aboud // RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -debug-info-kind=limited %s | FileCheck %s 213d7a706SAmjad Aboud 313d7a706SAmjad Aboud namespace std { class A; } 413d7a706SAmjad Aboud using std::A; using ::A; 513d7a706SAmjad Aboud 6a45c31a5SDavid Blaikie // CHECK: [[CompileUnit:![0-9]+]] = distinct !DICompileUnit({{.+}} imports: [[Imports:![0-9]+]] 713d7a706SAmjad Aboud // CHECK: [[Imports]] = !{[[ImportedEntity:![0-9]+]]} 8*5649b0e8SAdrian Prantl // CHECK: [[ImportedEntity]] = !DIImportedEntity(tag: DW_TAG_imported_declaration, scope: [[CompileUnit]], entity: [[STDA:![0-9]+]], file: [[FILE:![0-9]+]], line: 4) 9383f8413SDuncan P. N. Exon Smith // CHECK: [[STDA]] = !DICompositeType(tag: DW_TAG_class_type, name: "A", 10*5649b0e8SAdrian Prantl // CHECK: [[FILE]] = !DIFile(filename: {{.*}}debug-info-imported-entity.cpp 11