segfault when instantiating a class A that mixes in LinkedListEntry<A> #22666
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Milestone
The following program segfaults the VM. There is a stack overflow when trying to finalize the class.
import 'dart:collection';
class A extends Object with LinkedListEntry<A> { }
main() => new A();
The text was updated successfully, but these errors were encountered: