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
[ConstraintSystem] InferSenableFromCaptures: Fix treatment of partially applied instance methods on non-Sendable base
In situations like:
```
class A {
func test() {}
}
```
Fully uncurried function type should be @sendable but inner method
cannot be because it captures a non-Sendable type `A` when applied.
0 commit comments