blob: 95c0c268f33c306b8c3f8d3232f909a53a5aeb0d [file] [log] [blame]
//ALLOW_AST_ACCESS
package test
const private val topLevel = 1
object A {
const internal val inObject = 2
}
class B {
companion object {
const val inCompanion = 3
}
}