I've had a seemingly 'basic' <#C3PQML5NU|multiplat...
# multiplatform
d
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
actual typealias
no longer works for
expect enum
, which looks like an unintended breakage 🤔
a
d
@Altynbek Nurtaza That issue doesn't look related to me.
I've re-encountered this and it's still not fixed in March 2025 >_<
Pretty major 2.x bug, not happy kodee angry