mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
12 lines
357 B
Plaintext
12 lines
357 B
Plaintext
== test ==
|
|
fun test() {
|
|
"${throw Exception()} ${1}"
|
|
}
|
|
---------------------
|
|
Exception <v0> NEW()
|
|
Exception() <v0> COPY
|
|
1 <v1> NEW()
|
|
"${throw Exception()} ${1}" <v2> NEW(<v1>)
|
|
{ "${throw Exception()} ${1}" } <v2> COPY
|
|
=====================
|