11 lines
93 B
Kotlin
Vendored
11 lines
93 B
Kotlin
Vendored
class A {
|
|
init {}
|
|
|
|
private init {}
|
|
|
|
val x = f()
|
|
init {
|
|
x = 1
|
|
}
|
|
}
|