02e9a3d027
So #KT-17372 Fixed
7 lines
162 B
Kotlin
Vendored
7 lines
162 B
Kotlin
Vendored
class Declaration {
|
|
fun lambdaType(p: Int, f: (Int) -> Int) = f(p)
|
|
}
|
|
|
|
fun call(declaration: Declaration) {
|
|
declaration.lambdaType(10) {<caret> _ -> 11 }
|
|
} |