Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/Jet68.kt
T

13 lines
115 B
Kotlin
Vendored

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