5889971d62
#KT-7720 Fixed
7 lines
130 B
Plaintext
Vendored
7 lines
130 B
Plaintext
Vendored
fun foo(f: (Int) -> Int) = f(0)
|
|
fun bar(f: () -> Int) = f()
|
|
|
|
fun test() {
|
|
foo { val it1 = it
|
|
bar { (1 + 2) * it1 } }
|
|
} |