summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nullptr25.C
blob: a87a923a53d7e571e6f92233ce30ba8c40e7a235 (plain)
1
2
3
4
5
6
// { dg-do compile { target c++11 } }

template<decltype(nullptr)>
struct nt{};

nt<nullptr> x;