(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
debug/
dwarf2/
namespace-2.C
// 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;