d624ed4aff
* KT-18482 fixed * Moved code to separate method and changed code to cover few more cases. * Code style fixes.
11 lines
135 B
Plaintext
Vendored
11 lines
135 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar(1, b = {
|
|
it * 3
|
|
})
|
|
}
|
|
|
|
fun bar(c: Int, a: Int = 2, b: (Int) -> Int) {
|
|
b(a)
|
|
}
|