Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt174.fir.kt
T

8 lines
165 B
Kotlin
Vendored

// KT-174 Nullability info for extension function receivers
interface Tree {}
fun Any?.TreeValue() : Tree {
if (this is Tree) return this
throw Exception()
}