summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nullptr38.C
blob: 82d75ed28163a3bc7690c743b22fe219aba0d35c (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile { target c++11 } }

using nullptr_t = decltype(nullptr);

constexpr nullptr_t n = nullptr;

template <void *> struct A { };

A<n> a;