No subpackages of current package resolved by short name

This commit is contained in:
Valentin Kipyatkov
2014-12-25 17:14:28 +03:00
parent 817b86a820
commit a383a82ddd
9 changed files with 16 additions and 8 deletions
@@ -1,10 +1,13 @@
// FILE: a.kt
package example.ns
val y : Any? = 2
// FILE: b.kt
package example
import example.ns
object Obj {
val y : Any? = 2
}