diff options
author | 2017-07-18 20:03:22 -0500 | |
---|---|---|
committer | 2017-07-18 20:03:22 -0500 | |
commit | 97a7e38db7eb0643a6334aba30077622d09e5c85 (patch) | |
tree | a561e574a8cb36b748c84f69ee679fe0e61f1899 /tests/cfail/token-outlive.rs | |
parent | a2b0c9e0d077870441ecdea00108c3a3a394fd9b (diff) | |
download | rtic-97a7e38db7eb0643a6334aba30077622d09e5c85.tar.gz rtic-97a7e38db7eb0643a6334aba30077622d09e5c85.tar.zst rtic-97a7e38db7eb0643a6334aba30077622d09e5c85.zip |
tasks / idle have exclusive access to Threshold, but do not own the token
Diffstat (limited to 'tests/cfail/token-outlive.rs')
-rw-r--r-- | tests/cfail/token-outlive.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cfail/token-outlive.rs b/tests/cfail/token-outlive.rs index 9bcd2882..93d1c604 100644 --- a/tests/cfail/token-outlive.rs +++ b/tests/cfail/token-outlive.rs @@ -38,7 +38,7 @@ fn idle() -> ! { task!(EXTI0, exti0); -fn exti0(mut t: Threshold, r: EXTI0::Resources) { +fn exti0(mut t: &mut Threshold, r: EXTI0::Resources) { // ERROR token should not outlive the critical section let t = r.STATE.claim(&mut t, |_state, t| t); //~^ error cannot infer an appropriate lifetime @@ -46,4 +46,4 @@ fn exti0(mut t: Threshold, r: EXTI0::Resources) { task!(EXTI1, exti1); -fn exti1(_t: Threshold, _r: EXTI1::Resources) {} +fn exti1(_t: &mut Threshold, _r: EXTI1::Resources) {} |