14 lines
225 B
Plaintext
Vendored
14 lines
225 B
Plaintext
Vendored
// FIX: Replace 'it' with explicit parameter
|
|
|
|
fun foo(f: (String) -> Unit) {}
|
|
fun bar(s: String) {}
|
|
|
|
fun test() {
|
|
foo {
|
|
foo { it1 ->
|
|
bar(it1)
|
|
bar(it1)
|
|
bar(it1)
|
|
}
|
|
}
|
|
} |