Convert to scope function: enable on single function call

#KT-29099 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-02-16 12:02:57 +09:00
committed by Mikhail Glukhikh
parent e1fdf0aa43
commit 5f7dee4194
18 changed files with 177 additions and 5 deletions
@@ -0,0 +1,10 @@
// WITH_RUNTIME
class C {
fun foo() {}
}
fun test() {
val c = C()
c.foo()<caret>
}