Fix AE exception in "Convert too long character literal to string"

So #KT-23608 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-04-06 06:07:32 +03:00
committed by Mikhail Glukhikh
parent 1cbaab1531
commit 52d72ab920
4 changed files with 20 additions and 3 deletions
@@ -0,0 +1,5 @@
// "Convert too long character literal to string" "true"
fun foo() {
'foo\"bar'<caret>
}
@@ -0,0 +1,5 @@
// "Convert too long character literal to string" "true"
fun foo() {
"foo\"bar"
}