1afbb961ee
#KT-7135 Fixed
16 lines
244 B
Kotlin
Vendored
16 lines
244 B
Kotlin
Vendored
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
|
|
}
|
|
} |