1 namespace foo { 2 struct Foo { int x; }; 3 } 4 bar()5 int bar() { 6 // This using directive should generate DW_TAG_imported_module in DWARF. 7 using namespace foo; 8 return Foo().x; 9 } 10