1 // PR c++/57869
2 // { dg-do compile { target c++11 } }
3 
4 void* po = 0;
5 void (*pf)() = reinterpret_cast<decltype(pf)>(po);
6 static_assert(sizeof(po) >= sizeof(pf), "Conversion not supported");
7