// { dg-do compile { target c++20 } } template concept type = true; template concept same_as = __is_same_as(T, U); template concept integral = __is_same_as(T, int); template concept all_integral = (integral && ...); void f1(integral auto... args) { } void f2(all_integral auto... args) { } template requires true void f3(T, integral auto... args) { } template struct S { void f1(integral auto... args) { } void f2(all_integral auto... args) { } template requires true void f3(U, integral auto... args) { } }; int main() { f1(1, 2, 3); f1(1, 2, 3u); // { dg-error "" } f2(1, 2, 3); f2(1, 2, 3u); // { dg-error "" } f3(1, 2, 3); f3(1, 2, 3u); // { dg-error "" } f3(1u, 2, 3); S s; s.f1(1, 2, 3); s.f1(1, 2, 3u); // { dg-error "no matching function" } s.f2(1, 2, 3); s.f2(1, 2, 3u); // { dg-error "no matching function" } s.f3(1, 2, 3); s.f3(1, 2, 3u); // { dg-error "no matching function" } s.f3(1u, 2, 3); }