https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78073

Andrey Zholos <a...@q-fu.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |a...@q-fu.com

--- Comment #2 from Andrey Zholos <a...@q-fu.com> ---
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};

Reply via email to