Fixed bug in partial body resolve
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
Resolve target: fun foo(): kotlin.Unit
|
||||
----------------------------------------------
|
||||
class C {
|
||||
fun foo(){}
|
||||
}
|
||||
|
||||
fun Any.f() {
|
||||
if (this !is C) return
|
||||
<caret>foo()
|
||||
}
|
||||
Reference in New Issue
Block a user