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
[AST] Allow access-scope based access check inside inaccessible members
This aids expression diagnostics to pinpoint problems related to
chaining of inaccessible members e.g.
```swift
struct A {
struct B {}
}
_ = A.B()
```
Here both `B` and its synthesized constructor are inaccessible.
0 commit comments