rust/tests/ui/issues/issue-49851/compiler-builtins-error.rs
2024-03-06 18:19:13 -05:00

12 lines
210 B
Rust

//~ 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() {}