Files
CMake/Tests/Cuda/MixedStandardLevels1/main.cu
T
2019-12-10 17:56:48 -05:00

10 lines
176 B
Plaintext

#include <type_traits>
int main(int argc, char** argv)
{
// Verify that we have at least c++11
using returnv = std::integral_constant<int, 0>;
return returnv::value;
}