Files
kotlin-fork/idea/testData/refactoring/inline/function/expressionBody/Lambda.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
92 B
Plaintext
Vendored

class Declaration {
}
fun call(declaration: Declaration) {
({ it: Int -> it + 7 })(6)
}