Files
codeql/java/ql/test-kotlin1/library-tests/inherited-single-abstract-method/test.kt
2023-11-21 15:28:12 +00:00

10 lines
109 B
Kotlin

import java.util.function.UnaryOperator
fun f(x: UnaryOperator<String>) { }
fun test() {
f({x -> x})
}