Files

9 lines
121 B
Kotlin
Vendored

class NoPrimary {
val x: String
constructor(x: String) {
this.x = x
}
constructor(): this("")
}