rustc/tests/ui/resolve/pathless-extern-ok.rs
2023-08-02 10:33:26 +02:00

10 lines
196 B
Rust

// edition:2018
// compile-flags:--extern alloc
// build-pass
// Test that `--extern alloc` will load from the sysroot without error.
fn main() {
let _: Vec<i32> = alloc::vec::Vec::new();
}