<@U0VBFLQ01> Can't you do this: ``` class Foo { ...
# language-proposals
m
@thijs Can't you do this:
Copy code
class Foo {
    var bar: String? = //...
    var foo: String? = //...

    fun someMethod() {
        if (bar != null && foo != null) {
            // bar and foo are now non-optional
        }
    }
}