https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93295
Arthur O'Dwyer <arthur.j.odwyer at gmail dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.j.odwyer at gmail dot com --- Comment #6 from Arthur O'Dwyer <arthur.j.odwyer at gmail dot com> --- Another test case from Peter O'Rourke on cpplang Slack: https://godbolt.org/z/YEw4v9 template<int> struct A {}; template<int> A() -> A<1>; template<int> using B = A<2>; B bar;