blob: 6cd2e5f0c50a256c9655ec9dfea74317d52cc6c4 [file] [log] [blame]
// Test that we define A inside the namespace rather than declaring it
// there and then defining it at CU scope.
// { dg-options "-gdwarf-2 -dA -fno-debug-types-section" }
// { dg-final { scan-assembler-not "DW_AT_declaration" } }
namespace N {
struct A;
}
struct N::A { } a;