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
We are suppose to be able to query whether a type is Escapable or not at
runtime, in order to handle plain extensions of conditionally-Escapable
types, which are implicitly like this:
```
struct S<T: ~Escapable>: ~Escapable {}
extension S: Escapable where T: Escapable {}
extension S: P where T: Escapable {} // <- requires runtime information
```
While that's not yet implemented, it eventually will be once
NonescapableTypes matures.
0 commit comments