// PR c++/93295 // { dg-do compile { target c++20 } } template struct Foo { Foo(T) {} }; template Foo(T) -> Foo; template using Bar = Foo; Bar b{0};