"Make types explicit in lambda" intention renamed to "Specify explicit lambda signature"
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
public class TestingUse {
|
||||
fun test6(funcLitfunc: ((x: Int) -> Int) -> Boolean, innerfunc: (y: Int) -> Int): Unit {
|
||||
}
|
||||
}
|
||||
|
||||
fun main() {
|
||||
val funcInfunc = TestingUse().test6({<caret>f -> f(5) > 20}, {x -> x + 2})
|
||||
}
|
||||
Reference in New Issue
Block a user