Files
kotlin-fork/j2k/testData/multiFile/ToCompanionObject/ClassWithStatics.kt
T
2015-09-18 15:44:18 +03:00

16 lines
215 B
Kotlin
Vendored

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