2841931ffa
#KT-10828 Fixed
15 lines
237 B
Kotlin
Vendored
15 lines
237 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
|
|
}
|
|
} |