3 lines
83 B
Kotlin
Vendored
3 lines
83 B
Kotlin
Vendored
class WithInternalConstructor(val x: Int) {
|
|
internal constructor() : this(42)
|
|
} |