diff options
author | Roberto Raggi <qtc-committer@nokia.com> | 2009-01-07 11:03:37 +0100 |
---|---|---|
committer | Roberto Raggi <qtc-committer@nokia.com> | 2009-01-07 11:03:37 +0100 |
commit | 7fcf6cb25535c3f96a3dc453ea9583b0732ca08b (patch) | |
tree | 1fe97ec3d8fabb57bafe3d4fbf3ea9548fb31c58 /tests/manual/cplusplus | |
parent | f4bf0a3a6db41dd7ce6f122053a0d144c01b5bd8 (diff) | |
download | qt-creator-7fcf6cb25535c3f96a3dc453ea9583b0732ca08b.tar.gz |
Pretty printing of wide string literals.
Diffstat (limited to 'tests/manual/cplusplus')
-rw-r--r-- | tests/manual/cplusplus/tests/t1.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/manual/cplusplus/tests/t1.cpp b/tests/manual/cplusplus/tests/t1.cpp index 5457def79e..ce6bdcb120 100644 --- a/tests/manual/cplusplus/tests/t1.cpp +++ b/tests/manual/cplusplus/tests/t1.cpp @@ -43,6 +43,8 @@ class Class { default: return 2; } + s = L"ci\"aa\"ao" L"blah!"; + s2 = "ciao \"ciao\" ciao"; } }; |