Anyone here who has experience with `actual typeal...
# multiplatform
g
Anyone here who has experience with
actual typealias
on JVM? I’ve got this piece of Java code in a library
Copy code
public interface LoggingApi {
    class NoOp { }
}
and this is my expect syntax:
Copy code
expect interface KLoggingApi {
    class NoOp
}
and my actual in JVM:
Copy code
actual typealias KLoggingApi = LoggingApi
But in my JVM sourceset I can’t access / don’t have a reference to
KLoggingApi.NoOp
?
g
Thanks! @jw