Files
codeql/java/ql/test-kotlin1/library-tests/field-initializer-flow/test.kt
2023-11-21 15:28:12 +00:00

12 lines
95 B
Kotlin

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