Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/severalSmartCastsOnReified.fir.kt
T

11 lines
199 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
inline fun <reified T : CharSequence?> foo(y: Any?) {
if (y is T?) {
if (y != null) {
bar(y)
}
}
}
fun bar(x: CharSequence) {}