-
Couldn't load subscription status.
- Fork 1.7k
Closed
Labels
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Description
Example code:
import "dart:isolate";
func(){}
main() {
var r = new RawReceivePort();
r.handler = (v) {
print(v[0] == v[1]);
r.close();
};
r.sendPort.send([func, func]);
}
This prints:
runtime/vm/object.h:4781: error: Handle check failed: saw Function 'main': static. expected Instance
Aborted (core dumped)
Metadata
Metadata
Assignees
Labels
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.