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