package test open class ClassWithStatics { public fun instanceMethod() { } companion object { public fun staticMethod(p: Int) { } public val staticField: Int = 1 public var value: Int = 0 } }