c0d10264bc
Related to KT-14900
12 lines
180 B
Plaintext
Vendored
12 lines
180 B
Plaintext
Vendored
// HIGHLIGHT: GENERIC_ERROR_OR_WARNING
|
|
|
|
fun test(n: Int): String {
|
|
var res: String
|
|
|
|
<caret>res = when (n) {
|
|
1 -> "one"
|
|
else -> "two"
|
|
}
|
|
|
|
return res
|
|
} |