Alias importing fixed for the lazy case

This commit is contained in:
Andrey Breslav
2014-03-19 18:20:03 +04:00
parent 9ecd680fd4
commit 4dfb6763b2
4 changed files with 34 additions and 6 deletions
@@ -0,0 +1,11 @@
// FILE: a.kt
package a
val x = 1
// FILE: b.kt
package b
import a.x as AX
val y = AX