11 lines
152 B
Plaintext
Vendored
11 lines
152 B
Plaintext
Vendored
// SINGLE_REPLACE
|
|
// TARGET:
|
|
class A(val a: Int, s: String, i: Int = a + 1) {
|
|
val x = i
|
|
|
|
fun foo() = (a + 1) * 2
|
|
}
|
|
|
|
fun test() {
|
|
A(1, "2")
|
|
} |