``` package local val topLevel: Int = 1337 class T...
# announcements
r
Copy code
package local
val topLevel: Int = 1337
class Test : Demo() {
    fun test() {
        // How to access this package's topLevel?
    }
}

// Elsewhere
package foreign
abstract class Demo {
    val topLevel = 7
}
There's no way to access the package
topLevel
from within a function in
Test
, which could be an issue if `Test`s
topLevel
comes from a parent.