blob: 541938c5e4b55b5907e7bb814a868a5a252fb2e2 [file]
// MODULE: original
class A(val x: Int) {
constructor(block: () -> Unit) : this(5) {}
}
// MODULE: copy
class A(val x: Int) {
constructor(block: String) : this(5) {}
}