Giancarlo Buenaflor
06/30/2023, 2:17 PMactual typealias
on JVM?
I’ve got this piece of Java code in a library
public interface LoggingApi {
class NoOp { }
}
and this is my expect syntax:
expect interface KLoggingApi {
class NoOp
}
and my actual in JVM:
actual typealias KLoggingApi = LoggingApi
But in my JVM sourceset I can’t access / don’t have a reference to KLoggingApi.NoOp
?jw
06/30/2023, 2:19 PMGiancarlo Buenaflor
06/30/2023, 2:20 PM