Allow to access unexported package of named module in unnamed module in IDE

#KT-19492 Fixed
This commit is contained in:
Alexander Udalov
2017-08-25 15:12:08 +03:00
parent 290deb6ba4
commit f47093dc45
3 changed files with 20 additions and 23 deletions
@@ -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()
}