// { dg-do compile { target c++17_only } } // { dg-options "-fconcepts" } template concept bool C1 = true; template concept bool C2 = true; C1{...A} void f1() {}; C2{...A} void f2() {}; int main() { f1(); f2<1, 2, 3>(); return 0; }