* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr38.C
blob82d75ed28163a3bc7690c743b22fe219aba0d35c
1 // { dg-do compile { target c++11 } }
3 using nullptr_t = decltype(nullptr);
5 constexpr nullptr_t n = nullptr;
7 template <void *> struct A { };
9 A<n> a;