1
0
Fork 0
mirror of https://github.com/rtic-rs/rtic.git synced 2025-02-15 12:58:38 +01:00
rtic/tests/cfail/late-uninit.rs
Jorge Aparicio c631049efc v0.4.0
closes 
closes 
2018-11-03 17:16:55 +01:00

16 lines
279 B
Rust

#![no_main]
#![no_std]
extern crate lm3s6965;
extern crate panic_halt;
extern crate rtfm;
use rtfm::app;
#[app(device = lm3s6965)]
const APP: () = {
static mut X: u32 = (); //~ ERROR late resources MUST be initialized at the end of `init`
#[init]
fn init() {}
};