Files
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) { }
}