Files

9 lines
103 B
Kotlin
Vendored

class A
fun foo(): A? = null
fun main() {
val w = foo() ?: java.lang.Object()
w.hashCode()
}