blob: b30b40849667e9b3b481a887ec505f5fff2c447b [file] [log] [blame]
== doSomething ==
fun Any?.doSomething() {}
---------------------
=====================
== bar ==
fun bar(): Nothing = throw Exception()
---------------------
Exception() <v0>: {<: Throwable} NEW: call(Exception(), <init>) -> <v0>
=====================
== foo ==
fun foo() {
null!!.doSomething()
bar().doSomething()
}
---------------------
null <v0>: * NEW: r(null) -> <v0>
null!! <v1>: * NEW: magic[NOT_NULL_ASSERTION](null!!|<v0>) -> <v1>
doSomething() <v2>: * NEW: call(doSomething(), doSomething|<v1>) -> <v2>
null!!.doSomething() <v2>: * COPY
bar() !<v3>: *
doSomething() <v4>: * NEW: call(doSomething(), doSomething|!<v3>) -> <v4>
bar().doSomething() <v4>: * COPY
{ null!!.doSomething() bar().doSomething() } <v4>: * COPY
=====================