URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [crash56.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// Origin: Wolfgang Bangerth <bangerth@dealii.org>
// PR c++/28705
// DR 218 is debating whether this is well formed or not. We've never
// accepted it (because we'd crash), so we continue to reject it, but
// without crashing.
namespace N
{
struct A { A (A*); };
}
template<typename T> void g (N::A *p)
{
(void) A (p); // { dg-message "" "" }
}
Go to most recent revision | Compare with Previous | Blame | View Log