Files
codeql/java/ql/test/kotlin/library-tests/field-initializer-flow/test.kt
2022-05-13 17:40:58 +01:00

12 lines
95 B
Kotlin

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