* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / reinterpret_cast1.C
blob7c0463eac55c0c4156b184ea1eb31712436226d4
1 // PR c++/57869
2 // { dg-do compile { target c++11 } }
4 void* po = 0;
5 void (*pf)() = reinterpret_cast<decltype(pf)>(po);
6 static_assert(sizeof(po) >= sizeof(pf), "Conversion not supported");