// FIR_IDENTICAL // See KT-9529 Smart cast causes code to be incompilable fun foo(o: T): Collection { if (o is String) { return listOf(o) } return listOf(o) }