* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr31.C
blob01b8339b1c6e3356fe19db378594a8bfc11f62a5
1 // DR 1423, PR c++/52174
2 // { dg-do compile { target c++11 } }
4 bool b1 = nullptr;  // { dg-error "direct" }
6 bool b2(nullptr);
7 bool b3{nullptr};
9 int  i1 = nullptr;  // { dg-error "cannot convert" }
10 int  i2(nullptr);   // { dg-error "cannot convert" }
11 int  i3{nullptr};   // { dg-error "cannot convert" }