mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
126 B
Kotlin
9 lines
126 B
Kotlin
package foo.bar
|
|
|
|
class Foo {
|
|
private fun someFun() {
|
|
fun say(s: String) { println(s) }
|
|
say("Str")
|
|
}
|
|
}
|