Files
kotlin-fork/compiler/testData/cfg/FailFunction.instructions
T
2013-12-05 13:28:39 +04:00

21 lines
705 B
Plaintext

== fail ==
fun fail() : Nothing {
throw java.lang.RuntimeException()
}
---------------------
L0:
<START>
mark({ throw java.lang.RuntimeException() })
mark(throw java.lang.RuntimeException())
mark(java.lang.RuntimeException())
mark(RuntimeException())
call(RuntimeException, <init>)
throw (throw java.lang.RuntimeException()) NEXT:[<ERROR>]
L1:
<END> NEXT:[<SINK>] PREV:[]
error:
<ERROR> PREV:[throw (throw java.lang.RuntimeException())]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================