2014-09-07 16:57:26 -05:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-12-02 19:31:49 -06:00
|
|
|
#![feature(lang_items, start, collections)]
|
2014-09-07 16:57:26 -05:00
|
|
|
#![no_std]
|
|
|
|
|
2015-03-27 12:58:12 -05:00
|
|
|
extern crate std as other;
|
2014-09-07 16:57:26 -05:00
|
|
|
|
|
|
|
#[macro_use] extern crate collections;
|
|
|
|
|
|
|
|
#[start]
|
2015-03-25 19:06:52 -05:00
|
|
|
fn start(_argc: isize, _argv: *const *const u8) -> isize {
|
2014-09-07 16:57:26 -05:00
|
|
|
for _ in [1,2,3].iter() { }
|
|
|
|
0
|
|
|
|
}
|