(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
concepts-fnparm1.C
// { dg-do compile { target concepts } }

template <class T> void f(T t)
  requires requires { static_cast<T&&>(t); }
{}

int main()
{
  f(42);
}