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