blob: b6df89637407942895767a6c3f5cf05c8efe7a58 (
plain)
1
2
3
4
5
6
7
8
9
|
// { dg-do compile }
// { dg-options "-std=c++0x" }
// Test assignment to int
const int n1 = nullptr; // { dg-error "cannot convert " }
decltype(nullptr) mynull = 0;
const int n2 = mynull; // { dg-error "cannot convert " }
|