// { dg-do compile { target c++17 } } // { dg-options "-fconcepts" } template concept C1 = true; template concept C2 = true; template // { dg-error "wrong number of template arguments" } constexpr bool f1( ) { return true; } template T> // { dg-error "wrong number of template arguments" } constexpr bool f2( ) { return true; }