I've had a seemingly 'basic' #multiplatform code breakage going from
1.9.x
to `2.x.x`:
Common
Copy code
expect enum class PlatformRounding
iOS
Copy code
actual typealias PlatformRounding = NSRoundingMode
Outcome
Copy code
Expect declaration `PlatformRounding` is incompatible with actual `PlatformRounding` because some expected members have no actual ones
...
Expected entries has no actual declaration
💡 I'm assuming that 'entries' here is specific; and this has to do with CInterop not synthesizing an
entries
member for NSRoundingMode - which is an enum.
This means