rtic/tests/cfail/idle.rs

19 lines
311 B
Rust
Raw Normal View History

#![deny(unsafe_code)]
2017-07-18 22:14:39 +02:00
#![deny(warnings)]
#![feature(proc_macro)]
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;
extern crate stm32f103xx;
use rtfm::app;
app! { //~ error mismatched types
device: stm32f103xx,
}
fn init(_p: init::Peripherals) {}
// ERROR `idle` must be a diverging function
fn idle() {}