Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/smartCastReceiverWithGenerics.fir.kt
T

7 lines
93 B
Kotlin
Vendored

fun test(a: Any?) {
if (a != null) {
a.foo(11)
}
}
fun <T> Any.foo(t: T) = t