diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-04 07:15:18 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-08 09:05:55 (GMT) |
commit | ea9c445f066589067992694cb6abc0d70ad97dd7 (patch) | |
tree | 83c38ff64f803300c533fe1aed7b4f7962803704 /Tests/CompileFeatures | |
parent | 735adf2c94c1ee0cca710c6eb0bade2b84c461de (diff) | |
download | CMake-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.cpp | 7 |
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)"; +} |