Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/classFun/ClassParamUsedInFun.kt
T
2013-12-17 20:28:59 +04:00

6 lines
67 B
Kotlin

package test
class ClassParamUsedInFun<T> {
fun f(t: T) = 1
}