Files
kotlin-fork/compiler/testData/cfg/deadCode/stringTemplate.instructions
T
2014-03-07 21:08:16 +04:00

23 lines
705 B
Plaintext

== test ==
fun test() {
"${throw Exception()} ${1}"
}
---------------------
L0:
1 <START>
2 mark({ "${throw Exception()} ${1}" })
mark("${throw Exception()} ${1}")
mark(throw Exception())
mark(Exception())
call(Exception, <init>)
throw (throw Exception()) NEXT:[<ERROR>]
- r(1) PREV:[]
- r("${throw Exception()} ${1}") PREV:[]
L1:
1 <END> NEXT:[<SINK>] PREV:[]
error:
<ERROR> PREV:[throw (throw Exception())]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================