]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/vec-macro-no-std.rs
Imported Upstream version 1.2.0+dfsg1
[rustc.git] / src / test / run-pass / vec-macro-no-std.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
62682a34 11#![feature(lang_items, start, no_std, core, core_slice_ext, libc, collections)]
1a4d82fc
JJ
12#![no_std]
13
c34b1796 14extern crate std as other;
1a4d82fc
JJ
15
16#[macro_use]
17extern crate core;
18extern crate libc;
19
20#[macro_use]
21extern crate collections;
22
23use core::option::Option::Some;
24use core::slice::SliceExt;
25use collections::vec::Vec;
26
27// Issue #16806
28
29#[start]
c34b1796 30fn start(_argc: isize, _argv: *const *const u8) -> isize {
1a4d82fc
JJ
31 let x: Vec<u8> = vec![0, 1, 2];
32 match x.last() {
33 Some(&2) => (),
34 _ => panic!(),
35 }
36 0
37}