Files
codeql/java/ql/test-kotlin1/library-tests/generic-methods/ClassWithoutParams.kt
2023-11-21 15:28:12 +00:00

8 lines
100 B
Kotlin

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