Can someone confirm if I am correct in that this i...
# announcements
d
Can someone confirm if I am correct in that this is a bug?
Copy code
open class Outer {
    open val foo = 3
    open inner class Inner {
        val innerFoo = foo // Accessing non-final property foo in constructor
    }
}
That warning should not be there and in fact it goes away if you use
this@Outer.foo
instead.