3d8d92c7d3
- test data files renamed from *.jet to *.kt
12 lines
98 B
Kotlin
Vendored
12 lines
98 B
Kotlin
Vendored
class Foo()
|
|
|
|
fun test() {
|
|
val f : Foo? = null
|
|
if (f == null) {
|
|
|
|
}
|
|
if (f != null) {
|
|
|
|
}
|
|
}
|