blob: 91ef4de956ded57573a5718c2c8878198b4f0b7e (
plain)
1
2
3
4
5
6
7
8
9
|
//@ 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();
}
|