6 lines
67 B
Kotlin
6 lines
67 B
Kotlin
package test
|
|
|
|
class ClassParamUsedInFun<T> {
|
|
fun f(t: T) = 1
|
|
}
|