PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-deduce.C
blobce06d13196a49e6e3673d34536a970089e1bc915
1 // PR c++/36816, core issue 873
2 // { dg-do compile { target c++11 } }
4 template <class T> void h (T&&) { }
6 void (*pf)(int&)   = &h;
7 template <> void h(char&);
8 template void h(double&);