Fixed bug in partial body resolve

This commit is contained in:
Valentin Kipyatkov
2015-02-19 19:21:35 +03:00
parent db987eedee
commit 27f5d71e4f
6 changed files with 72 additions and 15 deletions
@@ -0,0 +1,10 @@
Resolve target: fun foo(): kotlin.Unit
----------------------------------------------
class C {
fun foo(){}
}
fun Any.f() {
if (this !is C) return
this.<caret>foo()
}