mirror of
https://github.com/github/codeql.git
synced 2026-04-27 17:55:19 +02:00
15 lines
209 B
Kotlin
15 lines
209 B
Kotlin
|
|
fun topLevelMethod(x: Int, y: Int) {
|
|
}
|
|
|
|
class Class {
|
|
fun classMethod(x: Int, y: Int) {
|
|
}
|
|
|
|
fun anotherClassMethod(a: Int, b: Int) {
|
|
classMethod(a, 3)
|
|
topLevelMethod(b, 4)
|
|
}
|
|
}
|
|
|