resolve of import all members from objects and variables

This commit is contained in:
svtk
2011-12-27 17:00:43 +04:00
parent 084472aa4f
commit 979dfdcd1e
5 changed files with 211 additions and 19 deletions
@@ -56,4 +56,19 @@ class E() {
class F() {
fun f() {}
}
//FILE:c.kt
package c
import C.*
object C {
fun a() {
}
val b = 3
}
fun foo() {
if (b == 3) a()
}