fix access from tests to internal elements in production code in case of circular dependency

Original commit: 5b59fc74bc
This commit is contained in:
Michael Nedzelsky
2015-11-09 15:42:16 +03:00
parent 934a969c2f
commit ba12afbbb9
24 changed files with 258 additions and 7 deletions
@@ -0,0 +1,3 @@
package test
internal fun testFunB() {}
@@ -0,0 +1,6 @@
package test
fun bar() {
funB()
testFunB()
}