blob: 07d5da14a4e6cc0315d8924e1206a1e3c51d02a4 [file]
package test
internal open class ClassWithStatics {
fun instanceMethod() {}
companion object {
fun staticMethod(p: Int) {}
val staticField = 1
var staticNonFinalField = 1
var value = 0
}
}