[Bug c++/78073] inherited initializer_list constructor is not accessible

2017-03-17 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78073

Martin Sebor  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||msebor at gcc dot gnu.org
 Resolution|--- |FIXED

--- Comment #3 from Martin Sebor  ---
I'm not able to reproduce the error or find a revision that failed.  Resolving
as fixed.

[Bug c++/78073] inherited initializer_list constructor is not accessible

2016-11-21 Thread a...@q-fu.com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78073

Andrey Zholos  changed:

   What|Removed |Added

 CC||a...@q-fu.com

--- Comment #2 from Andrey Zholos  ---
I think the below code triggers the same bug. But it seems to be fixed in
latest trunk.


// -std=c++1z

struct A {
A(int, int) {}
};

struct B : A {
using A::A;
};

B b{1, 2};

[Bug c++/78073] inherited initializer_list constructor is not accessible

2016-10-26 Thread lucdanton at free dot fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78073

lucdanton at free dot fr changed:

   What|Removed |Added

 CC||lucdanton at free dot fr

--- Comment #1 from lucdanton at free dot fr ---
Bisected to r241187.