Test package facade recompile after removing several files

This commit is contained in:
Nikolay Krasko
2014-06-04 02:29:17 +04:00
parent 5f0bfa8c56
commit 2f776affb3
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)
}