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
Make it an error for the representation type of an extension type to be a bottom type (#3393)
Make it an error for the representation type of an extension type declaration to be a bottom type. Note that it is still possible for the _instantiated_ representation type of an extension type to be a bottom type:
```dart
extension type E<X>(X x) {}
late E<Never> v; // Instantiated representation type is `Never`.
```
0 commit comments