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

7 lines
82 B
Kotlin
Vendored

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