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