Files
2023-11-17 14:07:13 +00:00

8 lines
100 B
Kotlin

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