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