Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/SmartCastOfThis2.dump
T
2015-03-03 19:22:27 +03:00

11 lines
180 B
Plaintext
Vendored

Resolve target: fun foo(): kotlin.Unit
----------------------------------------------
class C {
fun foo(){}
}
fun Any.f() {
if (this !is C) return
this.<caret>foo()
}