Files
kotlin/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ClassObjects.kt
2015-11-02 18:38:42 +03:00

15 lines
274 B
Kotlin
Vendored

class WithClassObject {
companion object {
fun foo() {}
val value: Int = 0
val valueWithGetter: Int
get() = 1
var variable: Int = 0
var variableWithAccessors: Int
get() = 0
set(v) {}
}
}