FIR IDE: AddToString quickfix

This commit is contained in:
Tianyu Geng
2021-06-11 14:11:07 -07:00
committed by Ilya Kirillov
parent 1b8b5b9a79
commit f6078b24df
15 changed files with 158 additions and 8 deletions
@@ -0,0 +1,6 @@
// "Add 'toString()' call" "true"
fun test() {
var s: String = ""
s = (1 + 2 * 3).toString()<caret>
}