Marc Knaup
05/20/2019, 7:32 PMexpect class Platform_TimeZone
// common
actual typealias Platform_TimeZone = ZoneId
// JVM - error because incompatible modality (ZoneId is abstract)
actual typealias Platform_TimeZone = NSTimeZone
// iOS - works fine
If I make the expected class abstract, then it's the other way round 😞
Any way to work around that without wrapping everything in a new class?Dico
05/20/2019, 7:35 PMjw
05/20/2019, 7:36 PMMarc Knaup
05/20/2019, 7:48 PM