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

template < typename T >
    requires ([]{return true ;}())
void h() { }

int main()
{
    h<int>();
}