blob: 91ef4de956ded57573a5718c2c8878198b4f0b7e [file] [log] [blame] [edit]
//@ 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();
}