Files
kotlin-fork/compiler/testData/codegen/boxInline/reified/kt7017.2.kt
T
2015-10-22 16:06:13 +03:00

9 lines
127 B
Kotlin
Vendored

package test
inline fun test<reified T>(x: Any): Boolean {
val x = object {
val y = x is T
}
return x.y
}