summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-06 09:14:42 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-08 09:05:58 (GMT)
commitc4e672358c4945e78234b8c7075924c80750d61b (patch)
treef6979c8e164ee4483a3c01bca113e8f1dc23caff /Tests
parentdcaafada0e213ae74082be84812a38d7f2a4a860 (diff)
downloadCMake-c4e672358c4945e78234b8c7075924c80750d61b.zip
CMake-c4e672358c4945e78234b8c7075924c80750d61b.tar.gz
CMake-c4e672358c4945e78234b8c7075924c80750d61b.tar.bz2
Features: Add cxx_long_long_type.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/CompileFeatures/cxx_long_long_type.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/cxx_long_long_type.cpp b/Tests/CompileFeatures/cxx_long_long_type.cpp
new file mode 100644
index 0000000..670324c
--- /dev/null
+++ b/Tests/CompileFeatures/cxx_long_long_type.cpp
@@ -0,0 +1,5 @@
+
+void someFunc()
+{
+ long long ll = 9223372036854775807LL;
+}