Add quickfix to add 'toString' (#866)

Fixes #KT-12121
This commit is contained in:
Kirill Rakhman
2016-04-28 11:15:39 +02:00
committed by Dmitry Jemerov
parent a51fe9a9b0
commit 2629d23576
12 changed files with 159 additions and 0 deletions
@@ -0,0 +1,9 @@
// "Add 'toString()' call" "true"
// ACTION: Add 'toString()' call
fun foo() {
bar((null as Any?).toString()<caret>)
}
fun bar(a: String) {
}