Files

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()
}