More correct convertation to string template when number literals involved

This commit is contained in:
Valentin Kipyatkov
2016-02-04 21:03:54 +03:00
parent 9c426e70e1
commit 3fe6f9cad2
5 changed files with 29 additions and 8 deletions
@@ -0,0 +1,3 @@
fun foo(p1: Int, p2: Int, p3: Int) {
val v = <caret>"a" + 0xAAA + p1 + 123 + p2 + 1.25 + "b"
}