resolve of import all members from objects and variables
This commit is contained in:
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user