URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [dtor7.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/40373
// { dg-do compile }
struct A;
namespace
{
struct A;
}
struct B {};
template <typename T> void
foo (T t)
{
t.~A (); // { dg-error "does not match destructor name" }
}
void
bar ()
{
foo (B ()); // { dg-bogus "required from here" "" { xfail *-*-* } }
}