Files
kotlin-fork/compiler/testData/codegen/boxInline/simpleGenerics/2.kt
T
2014-03-03 15:43:35 +04:00

5 lines
78 B
Kotlin

package test
inline fun <T> doSmth(a: T) : String {
return a.toString()
}