diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2017-04-21 21:24:28 -0500 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2017-04-21 21:24:28 -0500 |
| commit | eea803008390cbae307e873ce6d39e01d6367759 (patch) | |
| tree | c759d6c28a01fa8fa89abd52326720c5d3b5b8d3 /tests/cfail/tasks-same-handler.rs | |
| parent | 1c82f1b1190cb40a3502d5b74a8c98775a788850 (diff) | |
reword the comments in compile-fail tests
Diffstat (limited to 'tests/cfail/tasks-same-handler.rs')
| -rw-r--r-- | tests/cfail/tasks-same-handler.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/cfail/tasks-same-handler.rs b/tests/cfail/tasks-same-handler.rs index 662a67d..89e2012 100644 --- a/tests/cfail/tasks-same-handler.rs +++ b/tests/cfail/tasks-same-handler.rs @@ -2,8 +2,6 @@ #![feature(used)] -extern crate core; -extern crate cortex_m; #[macro_use] extern crate cortex_m_rtfm as rtfm; @@ -26,6 +24,9 @@ fn j1(_task: Exti0, _prio: P1) {} fn j2(_task: Exti0, _prio: P1) {} +// fake device crate +extern crate core; +extern crate cortex_m; mod device { pub mod interrupt { |
