// PR c++/98611 // { dg-do compile { target c++20 } } template struct S { template struct Tmpl { Tmpl(T); }; template requires requires (T object) { Tmpl{object}; } static int f(T); }; int a = S::f(0);