<@U2N8Y818V> In this case Int not converted to Un...
# announcements
g
@kmizu In this case Int not converted to Unit. 1 + 1 will not be translated to return 1 + 1. You can rewrite your functin and call return explicitly:
Copy code
fun foo(): Unit = run<Unit> {
        return@run 1 + 1
    }
In this case your code will not compile