Test package facade recompile after removing several files

Original commit: 2f776affb3
This commit is contained in:
Nikolay Krasko
2014-06-04 02:29:17 +04:00
parent b9aefafa67
commit 2795640c6b
6 changed files with 98 additions and 3 deletions
@@ -0,0 +1,5 @@
package foo
class Bar
fun other() {}
@@ -0,0 +1,6 @@
package boo
import foo.Bar
fun boo(bar: Bar) {
}
@@ -0,0 +1,8 @@
package foo
import boo.boo
fun main(args: Array<String>) {
val bar = Bar()
boo(bar)
}