I’m still having trouble. Now I can compile my li...
# multiplatform
n
I’m still having trouble. Now I can compile my library JAR for the JVM and JavaScript, but the tests (which are compiled for the JVM) do not compile. I get the following error:
Copy code
platform/jvm/src/test/com/natpryce/snodge/MutagenAndTest.kt:14:23: error: cannot access class 'com.natpryce.snodge.Random'. Check your module classpath for missing or conflicting dependencies
        val mutants = mutagen(Random(), "original").map { it.value }.toSet()
                      ^
platform/jvm/src/test/com/natpryce/snodge/MutagenAndTest.kt:14:31: error: type mismatch: inferred type is com.natpryce.snodge.Random /* = java.util.Random */ but com.natpryce.snodge.Random was expected
        val mutants = mutagen(Random(), "original").map { it.value }.toSet()