Unescape single quote when converting to string template

This commit is contained in:
Valentin Kipyatkov
2016-03-24 18:55:42 +03:00
parent 7f2ccb5613
commit e62c8a0860
4 changed files with 17 additions and 1 deletions
@@ -0,0 +1,3 @@
fun test(p: String): String {
return <caret>p + '\''
}
@@ -0,0 +1,3 @@
fun test(p: String): String {
return <caret>"$p'"
}