summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_lambda_init_captures.cpp
blob: 46f22cb514c98ce249d8b99acd2665c0796271f4 (plain)
1
2
3
4
5
6
7

int someFunc()
{
  int a = 0;
  return [b = static_cast<int&&>(a)]() { return b; }
  ();
}