// { dg-options "-std=c++17 -fconcepts" } template concept bool C1 = true; template concept bool C2 = true; template // { dg-error "not a type" } constexpr bool f1( ) { return true; } template T> // { dg-error "expected|not a type" } constexpr bool f2( ) { return true; }