import "package:test/test.dart";
import "dart:ffi";
main() {
test("fault", () {
Pointer.fromAddress(0).cast<Long>()[0] = 0;
});
}
With dart test example.dart, the test harness itself crashes.
With dart test -c exe example.dart, the test harness hangs.