mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
191 B
Kotlin
10 lines
191 B
Kotlin
fun test() {
|
|
|
|
// Static method of a class with type parameters:
|
|
val c = Class.forName("xyz")
|
|
|
|
// Static method of a class without one:
|
|
val s = String.format("Hello %s", "world")
|
|
|
|
}
|