9 lines
139 B
Plaintext
Vendored
9 lines
139 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
// WITH_RUNTIME
|
|
|
|
fun foo() {
|
|
listOf(1).forEach { (-it).let { arg -> it.bar(arg) } }
|
|
}
|
|
|
|
fun Int.bar(arg: Int) {
|
|
} |