FILE: when.kt
    public final fun foo(): R|kotlin/Int| {
        ^foo when () {
            Boolean(true) ->  {
                Int(1)
            }
            else ->  {
                Int(0)
            }
        }

    }
