2014-02-07 20:08:32 +01:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 17:32:48 -08:00
|
|
|
// 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-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-04-14 21:00:31 +05:30
|
|
|
#![allow(unused_imports)]
|
2015-02-05 16:14:42 -08:00
|
|
|
#![feature(start, no_std)]
|
2014-04-14 21:00:31 +05:30
|
|
|
#![no_std]
|
2015-01-16 10:55:24 -08:00
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate std;
|
2015-03-27 10:58:12 -07:00
|
|
|
extern crate std as zed;
|
2010-12-24 17:03:46 -08:00
|
|
|
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::str;
|
2014-08-12 19:25:05 -07:00
|
|
|
use zed::str as x;
|
2010-12-24 17:03:46 -08:00
|
|
|
mod baz {
|
2014-08-12 19:25:05 -07:00
|
|
|
pub use std::str as x;
|
2010-12-24 17:03:46 -08:00
|
|
|
}
|
|
|
|
|
2013-12-13 21:14:08 -08:00
|
|
|
#[start]
|
2015-03-25 17:06:52 -07:00
|
|
|
pub fn start(_: isize, _: *const *const u8) -> isize { 0 }
|