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
The following test fails in CFE (works in Analyzer)
// SharedOptions=--enable-experiment=inline-class import "../../Utils/static_type_helper.dart"; extension type ET1(int id) {} extension type ET2<T>(T id) {} extension type ET3.new(int id) {} extension type ET4<T>.new(T id) {} extension type ET5.n(int id) {} extension type ET6<T>.n(T id) {} main() { ET1.new.expectStaticType<Exactly<ET1 Function(int)>>(); ET2<String>.new.expectStaticType<Exactly<ET2<String> Function(String)>>(); ET3.new.expectStaticType<Exactly<ET3 Function(int)>>(); ET4<String>.new.expectStaticType<Exactly<ET4<String> Function(String)>>(); ET5.n.expectStaticType<Exactly<ET5 Function(int)>>(); ET6<String>.n.expectStaticType<Exactly<ET6<String> Function(String)>>(); }
The text was updated successfully, but these errors were encountered:
c867de3
johnniwinther
No branches or pull requests
The following test fails in CFE (works in Analyzer)
The text was updated successfully, but these errors were encountered: