mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
10 lines
199 B
Rust
10 lines
199 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();
|
|
}
|