// PR c++/114393 // { dg-do compile { target c++20 } } template struct c1 {}; template inline constexpr auto b_v = t; template using c1_t = c1>; template constexpr auto g(_Data __data) { return c1_t<_Data>{}; } void f() { auto &&b = g(0); }