9 lines
169 B
Plaintext
9 lines
169 B
Plaintext
// KT-174 Nullability info for extension function receivers
|
|
// +JDK
|
|
trait Tree {}
|
|
|
|
fun Any?.TreeValue() : Tree {
|
|
if (this is Tree) return this
|
|
throw Exception()
|
|
}
|