Files
kotlin-fork/compiler/testData/cfg/declarations/local/localClass.values
T

33 lines
561 B
Plaintext
Vendored

== f ==
fun f() {
class LocalClass() {
fun f() {
val x = ""
fun loc() {
val x3 = ""
}
}
}
}
---------------------
=====================
== f ==
fun f() {
val x = ""
fun loc() {
val x3 = ""
}
}
---------------------
"" <v0>: String NEW: r("") -> <v0>
=====================
== loc ==
fun loc() {
val x3 = ""
}
---------------------
"" <v0>: String NEW: r("") -> <v0>
=====================