Files
kotlin-fork/compiler/testData/codegen/boxInline/special/identityCheck.2.kt
T
2014-07-07 10:51:46 +04:00

5 lines
86 B
Kotlin

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