6 lines
85 B
Kotlin
Vendored
6 lines
85 B
Kotlin
Vendored
internal class C(private val field: Int) {
|
|
|
|
init {
|
|
println(field)
|
|
}
|
|
} |