mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
95 B
Kotlin
12 lines
95 B
Kotlin
class Test {
|
|
|
|
val x = "Source"
|
|
|
|
fun test() {
|
|
sink(x)
|
|
}
|
|
|
|
fun sink(s: String) { }
|
|
|
|
}
|