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

8 lines
86 B
C++
Raw Normal View History

int main(void)
{
// must fail because there is no initializer
auto i;
return 0;
}