]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-49851/compiler-builtins-error.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-49851 / compiler-builtins-error.rs
CommitLineData
a2a8927a
XL
1//~ ERROR can't find crate for `core`
2//~^ ERROR can't find crate for `compiler_builtins`
223e47cc 3
83c7162d 4// compile-flags: --target thumbv7em-none-eabihf
3dfed10e 5// needs-llvm-components: arm
83c7162d
XL
6#![deny(unsafe_code)]
7#![deny(warnings)]
8#![no_std]
041b39d2 9
83c7162d 10extern crate cortex_m;
a2a8927a
XL
11//~^ ERROR can't find crate for `cortex_m`
12
13fn main() {}