Nikolay Kasyanov
09/27/2019, 8:00 AMinternal class from a test within the same module (test & class packages are different though). According to the docs, it should work: https://kotlinlang.org/docs/reference/visibility-modifiers.html#modules (see "Modules", 3rd option). I'm using Kotlin Multiplatform though, hence my source sets are called commonMain and commonTest, not just main and test. Could this be causing this access issue? Is this a bug?Nikolay Kasyanov
09/27/2019, 8:12 AMjvmTest source set but the class I'm trying to import is in commonMain.Alexey Belkov [JB]
09/30/2019, 8:47 AMNikolay Kasyanov
10/14/2019, 12:25 PM