Copy: Support top-level declarations

This commit is contained in:
Alexey Sedunov
2017-05-16 12:57:28 +03:00
parent 4c1c1a989a
commit 1072495001
45 changed files with 477 additions and 43 deletions
@@ -0,0 +1,11 @@
package foo
fun a() {
a()
val b: B = B()
}
class B {
val a: A = A()
val b: B = B()
}