diff --git a/tests/issue-161-multiple-joiners.d b/tests/issue-161-multiple-joiners.d index c0ebc78..e1bac30 100644 --- a/tests/issue-161-multiple-joiners.d +++ b/tests/issue-161-multiple-joiners.d @@ -23,6 +23,9 @@ void main() t.join(); }); + // let the outer task run and start the inner task + yield(); + // let the outer task get another execution slice to write to t yield(); assert(t && t.running);