// "Replace ',' with '||' in when" "true" fun test(a: Boolean, b: Boolean, c: Boolean) { val c = when { a, b -> "a" c -> "b" else -> "e" } }