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