Files
codeql/java/ql/test-kotlin2/library-tests/generic-methods/ClassWithoutParams.kt
2023-11-17 14:07:13 +00:00

8 lines
100 B
Kotlin

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