Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt174.kt
T
2014-10-01 18:52:52 +04:00

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