blob: 4e56cca33d6a9301febbb5b4ebbba23dbd2c531a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//~ ERROR can't find crate for `core`
//~^ ERROR can't find crate for `compiler_builtins`
// compile-flags: --target thumbv7em-none-eabihf
// needs-llvm-components: arm
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_std]
extern crate cortex_m;
//~^ ERROR can't find crate for `cortex_m`
fn main() {}
|