11 lines
104 B
Kotlin
Vendored
11 lines
104 B
Kotlin
Vendored
class AAA {
|
|
fun foo() {
|
|
x = x + 1
|
|
}
|
|
|
|
companion object {
|
|
|
|
var x = 42
|
|
}
|
|
}
|