blob: 443895f7c48245be7068a0aa57875f0a24b833fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// run-pass
// ignore-emscripten no no_std executables
#![feature(lang_items, start, rustc_private)]
#![no_std]
extern crate std as other;
extern crate libc;
#[macro_use]
extern crate alloc;
use alloc::vec::Vec;
// Issue #16806
#[start]
fn start(_argc: isize, _argv: *const *const u8) -> isize {
let x: Vec<u8> = vec![0, 1, 2];
match x.last() {
Some(&2) => (),
_ => panic!(),
}
0
}
|