blob: 6f929731c7674cf8da7a078c10dd88a67bc86a95 [file] [log] [blame]
// edition:2018
#![no_std]
#![crate_type = "lib"]
use alloc::vec;
//~^ ERROR unresolved import `alloc`
pub fn foo() {
let mut xs = vec![];
xs.push(0);
}