summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nullptr25.C
blob: b8a7f45c674fa52644e5e8e9f6db57cb6c3b5e8e (plain)
1
2
3
4
5
6
// { dg-options -std=c++0x }

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

nt<nullptr> x;