You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the upcoming feature `InternalImportsByDefault` enabled, some versions of
the Swift compiler diagnose this pattern:
```
import protocol _Concurrency.Actor
// error: package protocol cannot refine an internal protocol
package protocol Proto: Actor {
// ...
}
```
Address these diagnostics by importing `_Concurrency` with package access
level.
0 commit comments