blob: 7390a574f8fb161c5f40c3580802fd47f9daa2e7 [file] [log] [blame]
//ALLOW_AST_ACCESS
package test
public class Outer {
public companion object {
public object Obj {
public val v: String = "val"
public fun f(): String = "fun"
}
}
}