Files
codeql/java/ql/test-kotlin2/library-tests/field-initializer-flow/test.kt
2023-11-17 14:07:13 +00:00

12 lines
95 B
Kotlin

class Test {
val x = "Source"
fun test() {
sink(x)
}
fun sink(s: String) { }
}