aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/lambda-requires4.C
blob: f3bb041310c551d09a1ad35f3cece744594ab27f (plain)
1
2
3
4
5
6
// PR c++/106976
// { dg-do compile { target c++20 } }

struct S{
  constexpr static auto s = requires { []; }; // { dg-error "expected '\{'" }
};