blob: 15a2ebde39203d3b3e0929189c38a295272d2222 [file] [log] [blame]
import kotlin.test.assertEquals
fun foo(x : String) : String {
when (x) {
"abc" -> return "abc"
"efg", "ghi", "abc" -> return "efg_ghi"
else -> return "other"
}
}
// 1 LOOKUPSWITCH