diff options
Diffstat (limited to 'Tests/Cuda/MixedStandardLevels1/main.cu')
-rw-r--r-- | Tests/Cuda/MixedStandardLevels1/main.cu | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/Cuda/MixedStandardLevels1/main.cu b/Tests/Cuda/MixedStandardLevels1/main.cu new file mode 100644 index 0000000..bc02c6d --- /dev/null +++ b/Tests/Cuda/MixedStandardLevels1/main.cu @@ -0,0 +1,9 @@ + +#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; +} |