summaryrefslogtreecommitdiff
path: root/TestPrograms/test_cxx11_vartemplates.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-04-20 04:44:21 -0400
committerJeffrey Walton <noloader@gmail.com>2021-04-20 04:44:21 -0400
commitc15aeaa7b5cdf4409d034a50efb3c0d2959a3f6a (patch)
tree0aabdf1ae1eccc30a641901e3c87144c6a6a6338 /TestPrograms/test_cxx11_vartemplates.cpp
parent21799b1fba6d9d3148cb56003a21f42f6fd086ed (diff)
downloadcryptopp-git-c15aeaa7b5cdf4409d034a50efb3c0d2959a3f6a.tar.gz
Use *.cpp file extension for test programs (GH #1024)
Diffstat (limited to 'TestPrograms/test_cxx11_vartemplates.cpp')
-rw-r--r--TestPrograms/test_cxx11_vartemplates.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/TestPrograms/test_cxx11_vartemplates.cpp b/TestPrograms/test_cxx11_vartemplates.cpp
new file mode 100644
index 00000000..2590c0d9
--- /dev/null
+++ b/TestPrograms/test_cxx11_vartemplates.cpp
@@ -0,0 +1,9 @@
+int main(int argc, char* argv[])
+{
+#if __cpp_variadic_templates >= 200704L
+ int x[1];
+#else
+ int x[-1];
+#endif
+ return 0;
+}