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
@@ -1,3 +1,3 @@
fun main(args: Array<String>){
val x = "abc0.32"
val x = "abc${0.320}"
}