Support for simple cases when a namespace creates classes from other namespaces.

This commit is contained in:
Pavel V. Talanov
2012-03-19 15:44:02 +04:00
parent 6f87634b25
commit 02da9b42c1
16 changed files with 164 additions and 117 deletions
@@ -0,0 +1,5 @@
package a.foo
import b.foo.f
fun box() = (f() == 1)
@@ -0,0 +1,3 @@
package b.foo
fun f() = 1