Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt174.jet
T
2012-03-12 22:54:24 +04:00

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