summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/Standard98/main.cu
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CudaOnly/Standard98/main.cu')
-rw-r--r--Tests/CudaOnly/Standard98/main.cu8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/CudaOnly/Standard98/main.cu b/Tests/CudaOnly/Standard98/main.cu
new file mode 100644
index 0000000..c79afd6
--- /dev/null
+++ b/Tests/CudaOnly/Standard98/main.cu
@@ -0,0 +1,8 @@
+
+#if __cplusplus >= 201103L
+# error "invalid standard value"
+#endif
+int main(int argc, char** argv)
+{
+ return 0;
+}