* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr01.C
blob90917d74f74cb2ef04174650cc32c850cb71185c
1 // { dg-do compile { target c++11 } }
3 // Test assignment to pointer
5 char* const cp1 = nullptr;
6 char* const cp2 = __null;
7 char* const cp3 = 0;
8 decltype(nullptr) mynull = 0;
9 char* const cp4 = mynull;