URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [pr38795.C] - Rev 826
Compare with Previous | Blame | View Log
// PR c++/38795
// { dg-do compile }
// { dg-options "-std=gnu++0x" }
template<typename... T> int foo(int i)
{
return *reinterpret_cast<T*>(i); // { dg-error "not expanded with|T" }
}
void bar(int i)
{
foo<int>(i);
}