1 // DR 1423, PR c++/52174
2 // { dg-do compile { target c++11 } }
3 
4 bool b1 = nullptr;  // { dg-error "direct" }
5 
6 bool b2(nullptr);
7 bool b3{nullptr};
8 
9 int  i1 = nullptr;  // { dg-error "cannot convert" }
10 int  i2(nullptr);   // { dg-error "cannot convert" }
11 int  i3{nullptr};   // { dg-error "cannot convert" }
12