Re: [C++ Patch] PR 58255
OK. Jason
[C++ Patch] PR 58255
Hi, for value-initialization (thus void_type_node as init), explicit should not matter, thus we shouldn't set LOOKUP_ONLYCONVERTING. I also double checked that we do the right thing for testcases like: struct A { explicit A(int = 0); }; A a1 = 1; /* error */ A a2; /* Ok */ A a3(2); /*