Intention to convert raw string literal to ordinary one

#KT-5208 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-03-03 13:09:11 +03:00
parent ecebb80bbe
commit 384183ad7b
13 changed files with 106 additions and 0 deletions
@@ -0,0 +1 @@
val s = <spot>"\"Kotlin\nis\ngood!\""</spot>
@@ -0,0 +1,3 @@
val s = <spot>""""Kotlin
is
good!""""</spot>
@@ -0,0 +1,5 @@
<html>
<body>
This intention converts a raw string literal (one surrounded with triple quote characters) to ordinary one (surrounded with single quote characters).
</body>
</html>