Resolve invisible references and mark them 'invisible' instead of mark them 'unresolved'
This commit is contained in:
@@ -12,13 +12,13 @@ val mc = MyJavaClass()
|
||||
//FILE: b.kt
|
||||
package b
|
||||
|
||||
import a.MyJavaClass
|
||||
import a.<!INVISIBLE_REFERENCE!>MyJavaClass<!>
|
||||
|
||||
val mc1 = <!UNRESOLVED_REFERENCE!>MyJavaClass<!>()
|
||||
val mc1 = <!INVISIBLE_MEMBER!>MyJavaClass<!>()
|
||||
|
||||
//FILE: c.kt
|
||||
package a.c
|
||||
|
||||
import a.MyJavaClass
|
||||
import a.<!INVISIBLE_REFERENCE!>MyJavaClass<!>
|
||||
|
||||
val mc1 = <!UNRESOLVED_REFERENCE!>MyJavaClass<!>()
|
||||
val mc1 = <!INVISIBLE_MEMBER!>MyJavaClass<!>()
|
||||
Reference in New Issue
Block a user