We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1282fc8 commit 7a065f2Copy full SHA for 7a065f2
src/libcore/task/mod.rs
@@ -785,7 +785,7 @@ fn test_spawn_linked_sup_fail_up() { // child fails; parent fails
785
let b1 = TaskBuilder {
786
opts: move opts,
787
can_not_copy: None,
788
- .. *b0
+ .. b0
789
};
790
do b1.spawn { fail; }
791
comm::recv(po); // We should get punted awake
@@ -805,7 +805,7 @@ fn test_spawn_linked_sup_fail_down() { // parent fails; child fails
805
806
807
808
809
810
do b1.spawn { loop { task::yield(); } }
811
fail; // *both* mechanisms would be wrong if this didn't kill the child...
0 commit comments