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

11 lines
136 B
C++

bool check_size(int i)
{
return sizeof(int) == sizeof(decltype(i));
}
int main()
{
bool ret = check_size(42);
return ret ? 0 : 1;
}