3748507ac1
+JDK was not very helpful
8 lines
161 B
Plaintext
8 lines
161 B
Plaintext
// KT-174 Nullability info for extension function receivers
|
|
trait Tree {}
|
|
|
|
fun Any?.TreeValue() : Tree {
|
|
if (this is Tree) return this
|
|
throw Exception()
|
|
}
|