Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/kt2146.jet
T
Alexander Udalov b5ba7123d5 KT-2146 Nullability casts in when.
#KT-2146 Fixed
2012-06-21 22:38:13 +04:00

10 lines
160 B
Plaintext

//KT-2146 Nullability casts in when.
package kt2146
fun f(s : Int?) : Int {
return when (s) {
null -> 3
else -> s // type mismatch
}
}