1 // { dg-do compile { target c++11 } }
2 
3 // Test assignment to pointer
4 
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;
10