8 lines
93 B
Plaintext
Vendored
8 lines
93 B
Plaintext
Vendored
// TARGET:
|
|
class A(a: Int, val i: Int = 1 + 2) {
|
|
fun foo() = i
|
|
}
|
|
|
|
fun test() {
|
|
A(1)
|
|
} |