Files
codeql/java/ql/test-kotlin2/library-tests/static-method-calls/test.kt
2023-11-17 14:07:13 +00:00

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")
}