Erroneous fix reverted. Test added

This commit is contained in:
Andrey Breslav
2011-10-24 19:54:47 +04:00
parent 292a41ec15
commit 828eadc6ef
7 changed files with 85 additions and 50 deletions
@@ -0,0 +1,12 @@
// KT-355 Resolve imports after all symbols are built
namespace a {
import b.*
val x : X = X()
}
namespace b {
class X() {
}
}