rust/tests/ui/array-slice-vec/vec-macro-no-std.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
495 B
Rust
Raw Normal View History

//@ run-pass
//@ ignore-emscripten no no_std executables
//@ ignore-wasm different `main` convention
#![no_std]
#![no_main]
// Import global allocator and panic handler.
extern crate std as other;
2015-01-06 03:13:38 +00:00
#[macro_use] extern crate alloc;
2017-06-13 22:52:59 +00:00
use alloc::vec::Vec;
// Issue #16806
#[no_mangle]
extern "C" fn main(_argc: core::ffi::c_int, _argv: *const *const u8) -> core::ffi::c_int {
let x: Vec<u8> = vec![0, 1, 2];
match x.last() {
Some(&2) => (),
_ => panic!(),
}
0
}