diff options
author | 2018-08-24 16:31:04 +0200 | |
---|---|---|
committer | 2018-08-24 16:31:04 +0200 | |
commit | abca8299268e55bdb80b649ceb6b0cc5d0f3c34a (patch) | |
tree | ebd4128dc1904f4adc60fea365f3f9d97620b58c /tests/cfail/priority-too-low.rs | |
parent | 5a3605050e210ab819af83b59556cfc78a2f667f (diff) | |
download | rtic-abca8299268e55bdb80b649ceb6b0cc5d0f3c34a.tar.gz rtic-abca8299268e55bdb80b649ceb6b0cc5d0f3c34a.tar.zst rtic-abca8299268e55bdb80b649ceb6b0cc5d0f3c34a.zip |
more fixes
Diffstat (limited to 'tests/cfail/priority-too-low.rs')
-rw-r--r-- | tests/cfail/priority-too-low.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cfail/priority-too-low.rs b/tests/cfail/priority-too-low.rs index e8795112..476b7a07 100644 --- a/tests/cfail/priority-too-low.rs +++ b/tests/cfail/priority-too-low.rs @@ -1,6 +1,5 @@ #![deny(unsafe_code)] #![deny(warnings)] -#![feature(proc_macro)] #![no_std] extern crate cortex_m_rtfm as rtfm; @@ -8,8 +7,9 @@ extern crate stm32f103xx; use rtfm::app; -app! { //~ error attempt to subtract with overflow - //~^ error constant evaluation error +app! { //~ error referenced constant has errors + //~^ error could not evaluate constant + //~| error constant evaluation error device: stm32f103xx, tasks: { |