summaryrefslogtreecommitdiff
path: root/Tests/Cuda/MixedStandardLevels3/lib.cpp
blob: cabbacb0853e695716208b107dd50a7edc4cdeb3 (plain)
1
2
3
4
5
6
7

int func(int A, int B)
{
  // Verify that we have at least c++14
  auto mult_func = [](auto a, auto b) { return a * b; };
  return mult_func(A, B);
}