Files
kotlin-fork/compiler/testData/cfg/deadCode/stringTemplate.values
T

11 lines
357 B
Plaintext

== test ==
fun test() {
"${throw Exception()} ${1}"
}
---------------------
Exception() <v0>: {<: Throwable} NEW()
1 <v1>: * NEW()
"${throw Exception()} ${1}" <v2>: * NEW(<v1>)
{ "${throw Exception()} ${1}" } <v2>: * COPY
=====================