mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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);
|
|
}
|