blob: 27dea1034db7e163a892165a715d27796ce69f38 [file] [log] [blame]
// !LANGUAGE: +UseGetterNameForPropertyAnnotationsMethodOnJvm
// WITH_STDLIB
package test
class TopLevel {
companion object {
fun a() {}
@JvmStatic
val q = "A"
}
fun b() {}
val x: String
val y = 5
class NestedClass {
inner class NestedInnerClass
}
object InnerObject
interface InnerInterface
}