mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
10 lines
109 B
Kotlin
10 lines
109 B
Kotlin
import java.util.function.UnaryOperator
|
|
|
|
fun f(x: UnaryOperator<String>) { }
|
|
|
|
fun test() {
|
|
|
|
f({x -> x})
|
|
|
|
}
|