Files
codeql/java/ql/test/kotlin/library-tests/static-method-calls/test.kt
2022-05-10 19:51:11 +01: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")
}