// PR c++/103706 // { dg-do compile { target c++20 } } template concept C = __is_same(T, int); template void f() { ([]() requires C { return Ts(); }(), ...); // { dg-error "no match" } } template void f(); // { dg-bogus "" } template void f(); // { dg-message "required from here" }