I'm modularizing (? read: make work with java modu...
# coroutines
g
I'm modularizing (? read: make work with java modules) my big ol' javafx app and I'm getting this:
Copy code
class kotlin.coroutines.jvm.internal.DebugProbesKt (in module kotlin.stdlib) cannot access class kotlinx.coroutines.debug.internal.DebugProbesImpl (in module kotlinx.coroutines.core) because module kotlin.stdlib does not read module kotlinx.coroutines.core

//edit: java 17, kotlin 1.9.23
Not sure what to do. Can i add-opens that from a module file or do i have to do it from the java invocation, or can i get it on the javac invocation?