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
Similar to #25122 but only seems to take effect when code uses part of syntax
The following works
main() {}
abstract class ComponentState<S extends ComponentState> {}
abstract class AbstractListEditorState<D,
S extends AbstractListEditorState<D, S>> extends ComponentState<S> {}
class IssueListEditorState
extends AbstractListEditorState<String, IssueListEditorState>
implements ComponentState<IssueListEditorState> {}
abstract class AbstractListEditor<D, S extends AbstractListEditorState<D, S>> {}
If you take this code and break it up as follows
library arghh;
part 'generics_new_parts_part.dart';
main() {}
abstract class AbstractListEditor<D, S extends AbstractListEditorState<D, S>> {}
and
part of arghh;
abstract class ComponentState<S extends ComponentState> {}
abstract class AbstractListEditorState<D,
S extends AbstractListEditorState<D, S>> extends ComponentState<S> {}
class IssueListEditorState
extends AbstractListEditorState<String, IssueListEditorState>
implements ComponentState<IssueListEditorState> {}
it now crashes with the exit code 138
This seems to be have been introduced in 1.14.0-dev.5.0 and is still broken in dev.6.0.
I don't have any trouble in dev.4.0.
The text was updated successfully, but these errors were encountered:
fsc8000
added
the
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
label
Jan 11, 2016
Either way it is hard to tell for me as this code would have failed due to #25122 anyway. i.e. I can't test it with an older vm as it would fail anyway
Similar to #25122 but only seems to take effect when code uses
part of
syntaxThe following works
If you take this code and break it up as follows
and
it now crashes with the exit code 138
This seems to be have been introduced in 1.14.0-dev.5.0 and is still broken in dev.6.0.
I don't have any trouble in dev.4.0.
The text was updated successfully, but these errors were encountered: