Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/InCompanionObject.kt
T
2015-09-25 13:02:46 +03:00

11 lines
104 B
Kotlin
Vendored

class AAA {
fun foo() {
x = x + 1
}
companion object {
var x = 42
}
}