(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
rtti/
anon-ns1.C
// PR c++/49440
// The typeinfo name for A should start with * so we compare
// it by address rather than contents.

// { dg-final { scan-assembler "\"\*N\[^\"\]+1AE" } }

namespace
{
  class A { };
}

void f()
{
  throw A();
}