// PR c++/97412 // { dg-do compile { target c++20 } } template concept call_bar_with = requires(T t, TArgs... args) { t.bar(args...); }; template concept foo = requires { requires call_bar_with; };