]> git.proxmox.com Git - rustc.git/blob - src/test/ui/pathless-extern-ok.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / pathless-extern-ok.rs
1 // edition:2018
2 // compile-flags:--extern alloc
3 // build-pass
4
5 // Test that `--extern alloc` will load from the sysroot without error.
6
7 fn main() {
8 let _: Vec<i32> = alloc::vec::Vec::new();
9 }