Files
kotlin-fork/idea/testData/refactoring/inline/function/expressionBody/Lambda2.kt.after
T
Mikhail Glukhikh f8e1f5e613 Inliner: specify explicit lambda signature for calls with lambdas
So #KT-17213 Fixed
So #KT-17395 Fixed
2017-04-19 13:12:55 +03:00

6 lines
88 B
Plaintext
Vendored

class Declaration {
}
fun call(declaration: Declaration) {
({ _: Int -> 11 })(10)
}