Files

13 lines
115 B
Kotlin
Vendored

// FIR_IDENTICAL
class Foo()
fun test() {
val f : Foo? = null
if (f == null) {
}
if (f != null) {
}
}