blob: d8fa2984f15c2043eaec958566d065bdaf2f2ffc [file] [log] [blame]
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts" }
template<typename T1, typename T2>
concept bool C1 = true;
template<typename T1, typename T2, typename T3>
concept bool C2 = true;
template<C1 T> // { dg-error "wrong number of template arguments" }
constexpr bool f1( ) { return true; }
template<C2<int> T> // { dg-error "wrong number of template arguments" }
constexpr bool f2( ) { return true; }