Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/local/LocalObject.fir.kt
T

9 lines
147 B
Kotlin
Vendored

fun foo(x: Any?) {
if (x is String) {
object : Base(x) {
fun bar() = x.length
}
}
}
open class Base(s: String)