blob: cdb5acaf9ca55e0c7aa93b8f3996eefc916524ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//! Checks that the declared unsafety is respected by the attributes
#![deny(warnings)]
#![no_main]
#![no_std]
extern crate cortex_m_rt;
extern crate panic_halt;
use cortex_m_rt::{entry, exception, ExceptionFrame};
#[entry]
unsafe fn main() -> ! {
foo();
loop {}
}
#[exception]
unsafe fn DefaultHandler(_irqn: i16) {
foo();
}
#[exception]
unsafe fn HardFault(_ef: &ExceptionFrame) -> ! {
foo();
loop {}
}
#[exception]
unsafe fn SysTick() {
foo();
}
unsafe fn foo() {}
|