Files
codeql/java/ql/test/kotlin/library-tests/generic-methods/ClassWithoutParams.kt
2022-05-10 19:51:11 +01:00

8 lines
100 B
Kotlin

public class ClassWithoutParams {
fun noTypeParams() { }
fun <T> hasTypeParams(t : T?) { }
}