blob: d7a5641b705a3a8975d881a2099da0b7f34a71a7 [file] [log] [blame] [edit]
fun foo(): Boolean {
val x = 1
val y = 10
return x in 0..5 && y !in 4..9
}