11 lines
210 B
Plaintext
11 lines
210 B
Plaintext
== test ==
|
|
fun test(a: Any) {
|
|
a.foo()
|
|
}
|
|
---------------------
|
|
a <v1>: * NEW()
|
|
foo() <v2>: * NEW(<v1>)
|
|
a.foo() <v2>: * COPY
|
|
{ a.foo() } <v2>: * COPY
|
|
=====================
|