CMake/Tests/CompileFeatures/cxx_decltype.cpp

8 lines
74 B
C++

int someFunc()
{
int i = 0;
decltype(i) other = 0;
return other;
}