Files
kotlin-fork/compiler/testData/psi/secondaryConstructors/anonymousInitializer.kt
T
2015-04-29 14:07:04 +02:00

11 lines
93 B
Kotlin
Vendored

class A {
init {}
private init {}
val x = f()
init {
x = 1
}
}