File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -166,22 +166,22 @@ test_cancel = test "cancel" do
166
166
v1 ← AVar .new " "
167
167
c1 ← AVar .put " a" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " a" ) ref
168
168
c2 ← AVar .put " b" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " b" ) ref
169
- c3 ← AVar .put " c" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " c" ) ref
169
+ _ ← AVar .put " c" v1 $ traverse_ \_ → void $ Ref .modify (_ <> " c" ) ref
170
170
c1
171
171
c2
172
172
_ ← AVar .tryTake v1
173
173
_ ← AVar .tryTake v1
174
174
_ ← AVar .tryTake v1
175
175
v2 ← AVar .empty
176
- c4 ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " d" ) ref
176
+ _ ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " d" ) ref
177
177
c5 ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " e" ) ref
178
- c6 ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " f" ) ref
178
+ _ ← AVar .take v2 $ traverse_ \_ → void $ Ref .modify (_ <> " f" ) ref
179
179
c5
180
180
_ ← AVar .tryPut " a" v2
181
181
_ ← AVar .tryPut " b" v2
182
182
_ ← AVar .tryPut " c" v2
183
183
v3 ← AVar .empty
184
- c7 ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " g" ) ref
184
+ _ ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " g" ) ref
185
185
c8 ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " h" ) ref
186
186
c9 ← AVar .read v3 $ traverse_ \_ → void $ Ref .modify (_ <> " i" ) ref
187
187
c8
You can’t perform that action at this time.
0 commit comments