9 lines
234 B
Plaintext
Vendored
9 lines
234 B
Plaintext
Vendored
public class TestingUse {
|
|
fun test6(funcLitfunc: ((x: Int) -> Int) -> Boolean, innerfunc: (y: Int) -> Int): Unit {
|
|
}
|
|
}
|
|
|
|
fun main() {
|
|
val funcInfunc = TestingUse().test6({ f: (x: Int) -> Int -> f(5) > 20}, { x -> x + 2})
|
|
}
|