Test not creating resolvers for modules that have no relevant packages

This commit is contained in:
Pavel V. Talanov
2017-05-11 18:50:12 +03:00
parent 77e611b2e7
commit 55721e4f16
6 changed files with 73 additions and 2 deletions
@@ -0,0 +1,4 @@
package foo.bar.used
public fun m1() {
}
@@ -0,0 +1,4 @@
package foo.bar.unused
public fun m2() {
}
@@ -0,0 +1,7 @@
package foo.bar.source
import foo.bar.used.*
public fun m3() {
m1()
}