10 lines
109 B
Kotlin
Vendored
10 lines
109 B
Kotlin
Vendored
class A(
|
|
val x: Int,
|
|
val y: String
|
|
)
|
|
|
|
fun foo() {
|
|
A(23, "foo")
|
|
}
|
|
|
|
// LINES: 1 2 3 * 8 7 7 |