CMake/Tests/CompileFeatures/cxx_decltype_auto.cpp

7 lines
75 B
C++

int someFunc(int argc, char**)
{
decltype(auto) i = argc;
return 0;
}