blob: c0401731ca78a379a832a97da4c96198b4644db9 (
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
37
38
39
40
41
42
43
44
45
|
//! Makes sure that the expansion of the attributes doesn't put the resource initializer in an
//! implicit `unsafe` block.
#![no_main]
#![no_std]
extern crate cortex_m_rt;
extern crate panic_halt;
use cortex_m_rt::{entry, exception, interrupt};
#[allow(non_camel_case_types)]
enum interrupt {
UART0,
}
const unsafe fn init() -> u32 { 0 }
#[entry]
fn foo() -> ! {
static mut X: u32 = init(); //~ ERROR requires unsafe
loop {}
}
#[exception]
fn SVCall() {
static mut X: u32 = init(); //~ ERROR requires unsafe
}
#[exception]
fn DefaultHandler(_irq: i16) {
static mut X: u32 = init(); //~ ERROR requires unsafe
}
#[exception]
fn HardFault(_frame: &cortex_m_rt::ExceptionFrame) -> ! {
static mut X: u32 = init(); //~ ERROR requires unsafe
loop {}
}
#[interrupt]
fn UART0() {
static mut X: u32 = init(); //~ ERROR requires unsafe
}
|