8 lines
188 B
Kotlin
8 lines
188 B
Kotlin
// KT-174 Nullability info for extension function receivers
|
|
trait Tree {}
|
|
|
|
fun Any?.TreeValue() : Tree {
|
|
if (this is Tree) return <!DEBUG_INFO_SMARTCAST!>this<!>
|
|
throw Exception()
|
|
}
|