We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expected error below is not reported nor by analyzer nor by CFE
// SharedOptions=--enable-experiment=inline-class extension type V1<T>(T id) {} extension type V(num id) implements V1<String> {} // ^^ // [analyzer] unspecified // [cfe] unspecified main() { print(V1); print(V); }
Tested on Dart SDK version: 3.2.0-36.0.dev (dev) (Thu Aug 3 17:04:06 2023 -0700) on "windows_x64" and on the edge SDK (Aug 10, 2023) on Linux x64
Dart SDK version: 3.2.0-36.0.dev (dev) (Thu Aug 3 17:04:06 2023 -0700) on "windows_x64"
The text was updated successfully, but these errors were encountered:
There is even simpler example below. Again, no error reported by analyzer and CFE
extension type V1(String id) {} extension type V(num id) implements V1 {} // ^ // [analyzer] unspecified // [cfe] unspecified main() { print(V1); print(V); }
Sorry, something went wrong.
Fixed in 53cccf9, in the analyzer.
ef10dca
johnniwinther
No branches or pull requests
Expected error below is not reported nor by analyzer nor by CFE
Tested on
Dart SDK version: 3.2.0-36.0.dev (dev) (Thu Aug 3 17:04:06 2023 -0700) on "windows_x64"
and on the edge SDK (Aug 10, 2023) on Linux x64The text was updated successfully, but these errors were encountered: