79bac598bf
#KT-11587 Fixed
17 lines
251 B
Kotlin
Vendored
17 lines
251 B
Kotlin
Vendored
package test
|
|
|
|
internal open class ClassWithStatics {
|
|
fun instanceMethod() {
|
|
}
|
|
|
|
companion object {
|
|
|
|
fun staticMethod(p: Int) {
|
|
}
|
|
|
|
val staticField = 1
|
|
var staticNonFinalField = 1
|
|
|
|
var value = 0
|
|
}
|
|
} |