Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt174.jet
T

9 lines
169 B
Plaintext

// KT-174 Nullability info for extension function receivers
// +JDK
trait Tree {}
fun Any?.TreeValue() : Tree {
if (this is Tree) return this
throw Exception()
}