Files
kotlin-fork/compiler/testData/cfg/deadCode/DeadCode.values
T
Svetlana Isakova aa26db0538 Updated tests for control flow: call instruction stores call element
instead of callee expression
2014-07-08 14:57:38 +04:00

11 lines
341 B
Plaintext
Vendored

== test ==
fun test() {
throw Exception()
test()
}
---------------------
Exception() <v0>: {<: Throwable} NEW: call(Exception(), <init>) -> <v0>
test() <v1>: * NEW: call(test(), test) -> <v1>
{ throw Exception() test() } <v1>: * COPY
=====================