mirror of
https://github.com/github/codeql.git
synced 2026-04-08 00:24:03 +02: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")
|
|
}
|
|
}
|