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

This commit is contained in:
Michael Nedzelsky
2015-11-09 15:42:16 +03:00
parent a8b11ff07b
commit 5b59fc74bc
28 changed files with 292 additions and 30 deletions
@@ -0,0 +1,3 @@
package test
internal fun testFunA() {}
@@ -0,0 +1,6 @@
package test
fun foo() {
funA()
testFunA()
}