Folkert de Vries efaf3eb8a0
ignore run-make tests that need std on no_std targets
In particular, anything that includes `none` in the target tripple, and `nvptx64-nvidia-cuda`
2025-06-12 15:10:12 +02:00

8 lines
170 B
Rust

//@ needs-target-std
use run_make_support::{path, rustc};
fn main() {
rustc().input("bar.rs").crate_name("foo").run();
assert!(path("libfoo.rlib").is_file());
}