blob: e18be4300a30fbcd7df98111e104679f52bdb9a3 [file] [log] [blame]
// 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();
}