vtk-m/CMake/CheckCXX11Features/cxx11-test-auto_ret_type.cpp

9 lines
74 B
C++

auto foo(int i) -> int {
return i - 1;
}
int main()
{
return foo(1);
}