Ruckus
04/13/2018, 5:19 PMpackage 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
}
topLevel from within a function in Test, which could be an issue if `Test`s topLevel comes from a parent.