summaryrefslogtreecommitdiffstats
path: root/test/input/Function-lambda.cxx
blob: d11a9b1bfdc922d1473c3504c7375775b6fca1f2 (plain)
1
2
3
4
5
6
7
8
9
10
template <typename F>
F start(F f)
{
  return f;
}

void instantiate_start_with_lambda()
{
  start([]() {});
}