about summary refs log tree commit diff
path: root/tests/ui/issues/issue-49851/compiler-builtins-error.rs
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() {}