Visible classes take priority when resolving imports with *

This commit is contained in:
Valentin Kipyatkov
2015-01-20 16:23:04 +03:00
parent b9d47ffe7a
commit 974982463c
18 changed files with 17944 additions and 56 deletions
@@ -0,0 +1,11 @@
// FILE: File1.kt
package pack1
private open class SomeClass
// FILE: Main.kt
package a
import pack1.*
class X : <!INVISIBLE_REFERENCE, INVISIBLE_MEMBER!>SomeClass<!>()