diff options
Diffstat (limited to 'tests/cfail/wrong-threshold.rs')
-rw-r--r-- | tests/cfail/wrong-threshold.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/cfail/wrong-threshold.rs b/tests/cfail/wrong-threshold.rs index b46f82de..b9740715 100644 --- a/tests/cfail/wrong-threshold.rs +++ b/tests/cfail/wrong-threshold.rs @@ -39,7 +39,6 @@ fn idle() -> ! { fn exti0(mut ot: &mut Threshold, r: EXTI0::Resources) { r.A.claim(&mut ot, |_a, mut _it| { //~^ error cannot borrow `ot` as mutable more than once at a time - //~| error cannot borrow `ot` as mutable more than once at a time // ERROR must use inner token `it` instead of the outer one (`ot`) r.B.claim(&mut ot, |_b, _| {}) }); |