29 lines
475 B
Kotlin
Vendored
29 lines
475 B
Kotlin
Vendored
class A {
|
|
fun box() {
|
|
bar(
|
|
this,
|
|
null,
|
|
0,
|
|
1,
|
|
"2",
|
|
true,
|
|
false
|
|
)
|
|
|
|
bar(
|
|
true,
|
|
false,
|
|
0,
|
|
1,
|
|
"2",
|
|
this,
|
|
null
|
|
)
|
|
}
|
|
}
|
|
|
|
fun bar(vararg x: Any?) {
|
|
println(x)
|
|
}
|
|
|
|
// LINES: 3 4 5 6 7 8 9 10 13 14 15 16 17 18 19 20 * 26 |