Allow to access unexported package of named module in unnamed module in IDE
#KT-19492 Fixed
This commit is contained in:
+3
-3
@@ -1,6 +1,6 @@
|
||||
import dependency.<error>Foo</error>
|
||||
import dependency.Foo
|
||||
|
||||
fun unnamedUsage(): String {
|
||||
val foo: <error>Foo</error> = <error>Foo</error>()
|
||||
return foo.<error>toString</error>()
|
||||
val foo: Foo = Foo()
|
||||
return foo.toString()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user