mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 17:13:48 +00:00
13 lines
165 B
Rust
13 lines
165 B
Rust
|
//@ edition:2018
|
||
|
|
||
|
#![no_std]
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
use alloc::vec;
|
||
|
//~^ ERROR unresolved import `alloc`
|
||
|
|
||
|
pub fn foo() {
|
||
|
let mut xs = vec![];
|
||
|
xs.push(0);
|
||
|
}
|