fun test(x: Int, b: Boolean) { val bar = when (x) { 1 -> if (b) 1 else 2 // comment else -> 0 } }