summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/NotEnabled/main.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Cuda/NotEnabled/main.cxx')
-rw-r--r--Tests/Cuda/NotEnabled/main.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/Cuda/NotEnabled/main.cxx b/Tests/Cuda/NotEnabled/main.cxx
new file mode 100644
index 0000000..a644207
--- /dev/null
+++ b/Tests/Cuda/NotEnabled/main.cxx
@@ -0,0 +1,9 @@
+
+#include <type_traits>
+
+int main(int argc, char** argv)
+{
+ // make sure we have c++11 enabled
+ using returnv = std::integral_constant<int, 0>;
+ return returnv::value;
+}