Are `actual` implementations restricted to the `ex...
# multiplatform
p
Are
actual
implementations restricted to the
expect
declaration module?
h
Yes, they are. This is an intentional restriction, as allowing
actual
implementations in other modules could lead to getting multiple implementations of a single
expect
declaration on the classpath through transitive dependencies on multiple implementing modules. Therefore it was prohibited.
p
Okay, that’s what I was thinking. Thanks.