2021-11-26 14:37:56 -06:00
|
|
|
//~ ERROR can't find crate for `core`
|
|
|
|
//~^ ERROR can't find crate for `compiler_builtins`
|
2018-04-16 14:28:30 -05:00
|
|
|
|
|
|
|
// compile-flags: --target thumbv7em-none-eabihf
|
2020-08-02 10:23:49 -05:00
|
|
|
// needs-llvm-components: arm
|
2018-04-16 14:28:30 -05:00
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
extern crate cortex_m;
|
2021-11-26 14:37:56 -06:00
|
|
|
//~^ ERROR can't find crate for `cortex_m`
|
|
|
|
|
|
|
|
fn main() {}
|