Files
kotlin-fork/compiler/testData/codegen/boxInline/reified/checkCast/nullable.2.kt
T

7 lines
82 B
Kotlin
Vendored

package test
class A
class B
inline fun <reified T> Any?.foo(): T? = this as T?