summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-04 07:15:18 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-08 09:05:55 (GMT)
commitea9c445f066589067992694cb6abc0d70ad97dd7 (patch)
tree83c38ff64f803300c533fe1aed7b4f7962803704 /Tests/CompileFeatures
parent735adf2c94c1ee0cca710c6eb0bade2b84c461de (diff)
downloadCMake-ea9c445f066589067992694cb6abc0d70ad97dd7.zip
CMake-ea9c445f066589067992694cb6abc0d70ad97dd7.tar.gz
CMake-ea9c445f066589067992694cb6abc0d70ad97dd7.tar.bz2
Features: Add cxx_raw_string_literals.
Diffstat (limited to 'Tests/CompileFeatures')
-rw-r--r--Tests/CompileFeatures/cxx_raw_string_literals.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/cxx_raw_string_literals.cpp b/Tests/CompileFeatures/cxx_raw_string_literals.cpp
new file mode 100644
index 0000000..ea4d231
--- /dev/null
+++ b/Tests/CompileFeatures/cxx_raw_string_literals.cpp
@@ -0,0 +1,7 @@
+
+void someFunc()
+{
+const char p[] = R"(a\
+b
+c)";
+}