13 lines
273 B
Kotlin
Vendored
13 lines
273 B
Kotlin
Vendored
class MyClass
|
|
|
|
operator fun MyClass.inc(): MyClass { return null!! }
|
|
|
|
public fun box() {
|
|
var i : MyClass?
|
|
i = MyClass()
|
|
// Type of j should be inferred as MyClass?
|
|
var j = ++<!DEBUG_INFO_SMARTCAST!>i<!>
|
|
// j is null so call is unsafe
|
|
j.hashCode()
|
|
}
|