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.*
fun box() = (A().tadada(A()))
@@ -0,0 +1,5 @@
package b.foo
class A() {
fun tadada(a : A) = true
}