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