blob: f75d0ebc64490da31df750c91b650eb36c5e2923 [file] [log] [blame]
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})
}