Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr25.C
bloba87a923a53d7e571e6f92233ce30ba8c40e7a235
1 // { dg-do compile { target c++11 } }
3 template<decltype(nullptr)>
4 struct nt{};
6 nt<nullptr> x;