After updating to Xcode 16.0 beta 5 (16A5221g) on macOS Sonoma 14.6 I am getting lots of errors like:
Main actor-isolated property '[property name]' can not be mutated from a nonisolated context
in classes that are marked as @MainActor
at the class level, e.g.:
@MainActor final class MyClass: AnotherClass { ... }
The project uses Swift 6 and there are no errors in Xcode 16 beta 4.
I tried restarting, clearing Derived Data, cleaning build folder...
Anyone else encountering this issue with beta 5?