Files
kotlin-fork/idea/testData/checker/regression/Jet68.kt
T
2012-11-12 19:54:22 +04:00

11 lines
97 B
Kotlin

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