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

5 lines
86 B
Kotlin

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