7f50e6e70e
(cherry picked from commit 93aaa48)
11 lines
192 B
Plaintext
Vendored
11 lines
192 B
Plaintext
Vendored
class WithProperties {
|
|
val x: Int
|
|
val y: Int
|
|
private val z: Int
|
|
|
|
constructor(x: Int, y: Int = 7, z: Int = 13) {
|
|
this.x = x
|
|
this.y = y
|
|
this.z = z
|
|
}
|
|
} |