ModuleDescriptor now sees internals of its expected by #KT-15739 Fixed

This commit is contained in:
Mikhail Glukhikh
2018-03-02 16:54:41 +03:00
parent 0c4c9251d6
commit 442a89bc6c
4 changed files with 18 additions and 7 deletions
@@ -0,0 +1,3 @@
expect fun foo()
internal fun bar() {}
@@ -0,0 +1,3 @@
actual fun foo() {
bar() // should work
}