Inliner: specify explicit lambda signature for calls with lambdas
So #KT-17213 Fixed So #KT-17395 Fixed
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
class Declaration {
|
||||
fun lambdaType(p: Int, f: (Int) -> Int) = f(p)
|
||||
}
|
||||
|
||||
fun call(declaration: Declaration) {
|
||||
declaration.<caret>lambdaType(6) { it + 7 }
|
||||
}
|
||||
Reference in New Issue
Block a user