6 lines
77 B
Kotlin
Vendored
6 lines
77 B
Kotlin
Vendored
class A {
|
|
val x: Int
|
|
constructor(x: Int) {
|
|
this.x = x
|
|
}
|
|
} |