rtic/tests/cfail/idle.rs

26 lines
440 B
Rust
Raw Normal View History

2018-05-17 23:28:58 +02:00
// error-pattern: mismatched types
#![deny(unsafe_code)]
2017-07-18 22:14:39 +02:00
#![deny(warnings)]
#![feature(proc_macro)]
2018-05-14 21:22:50 +02:00
#![no_main]
2017-07-24 03:51:58 +02:00
#![no_std]
2017-07-18 22:14:39 +02:00
extern crate cortex_m_rtfm as rtfm;
2018-05-07 17:46:26 +02:00
extern crate panic_itm;
2017-07-18 22:14:39 +02:00
extern crate stm32f103xx;
use rtfm::app;
2018-05-17 23:28:58 +02:00
app! {
2017-07-18 22:14:39 +02:00
device: stm32f103xx,
2018-05-17 23:28:58 +02:00
idle: {},
2017-07-18 22:14:39 +02:00
}
2018-05-01 14:01:51 +02:00
fn init(_ctxt: init::Context) -> init::LateResources {
init::LateResources {}
}
2017-07-18 22:14:39 +02:00
// ERROR `idle` must be a diverging function
2018-05-01 14:01:51 +02:00
fn idle(_ctxt: idle::Context) {}