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);
|
||
|
|
}
|