Interesting, why does the compiler complain about the following? ```// commonMain internal expect cl...
e
Interesting, why does the compiler complain about the following?
Copy code
// commonMain
internal expect class Test<T>

// jvmMain
internal actual typealias Test<T> = CompletableFuture<T>
a
That's a bug, just suppress I guess
e
Spot on. If I change to
public
, no more error. Thanks!
a
If that works for you, sure! Internal + suppress also works fine.
✔️ 1