Move Declaration to Separate File: Process internal references since imports may be necessary in the new file

This commit is contained in:
Alexey Sedunov
2015-09-30 14:34:38 +03:00
parent c2b4647aa8
commit 1b9bbf0bb6
6 changed files with 23 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
package q
fun bar() {
}

View File

@@ -1,7 +1,11 @@
package p
class <caret>A {
import q.bar
class <caret>A {
init {
bar()
}
}
fun foo() {