// PR c++/94719 // { dg-do compile { target concepts } } template struct bar { template requires (N == 5) bar() { } }; template struct foo : bar { using foo::bar::bar; }; void baz() { foo{}; }