10 lines
128 B
Plaintext
Vendored
10 lines
128 B
Plaintext
Vendored
class A {
|
|
constructor(a: Int, i: Int = a + 1) {
|
|
val b = i * 2
|
|
val t = a + b
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
A(1)
|
|
} |