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