fun foo(style: Int?): Int { val a = style ?: 0 // comment return when (a) { 0 -> 0 else -> a } }