blob: 1909527cc42bf6d46f083c7c2deabdc479151869 [file]
open class SuperFoo {
public fun bar(): String {
if (this is Foo) {
<!DEBUG_INFO_IMPLICIT_RECEIVER_SMARTCAST!>superFoo<!>()
return baz()
}
return baz()
}
public fun baz() = "OK"
}
class Foo : SuperFoo() {
public fun superFoo() {}
}