(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
concepts/
fn-concept1.C
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts-ts" }

template<typename T>
  concept bool Tuple() { // { dg-error "multiple statements" }
    static_assert(T::value, "");
    return true;
  }

  void f(Tuple&);