Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt174.kt
T
2015-05-12 19:43:17 +02:00

8 lines
192 B
Kotlin
Vendored

// KT-174 Nullability info for extension function receivers
interface Tree {}
fun Any?.TreeValue() : Tree {
if (this is Tree) return <!DEBUG_INFO_SMARTCAST!>this<!>
throw Exception()
}