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