2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
|
|
|
|
2018-09-14 10:20:28 +00:00
|
|
|
#![allow(stable_features)]
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-04-14 15:30:31 +00:00
|
|
|
#![allow(unused_imports)]
|
2015-07-30 00:01:14 +00:00
|
|
|
#![feature(start, no_core, core)]
|
|
|
|
#![no_core]
|
2015-01-16 18:55:24 +00:00
|
|
|
|
2014-02-14 18:10:06 +00:00
|
|
|
extern crate std;
|
2015-03-27 17:58:12 +00:00
|
|
|
extern crate std as zed;
|
2010-12-25 01:03:46 +00:00
|
|
|
|
2013-05-21 00:07:24 +00:00
|
|
|
use std::str;
|
2014-08-13 02:25:05 +00:00
|
|
|
use zed::str as x;
|
2015-08-01 05:20:25 +00:00
|
|
|
|
|
|
|
use std::io::{self, Error as IoError, Result as IoResult};
|
|
|
|
use std::error::{self as foo};
|
2010-12-25 01:03:46 +00:00
|
|
|
mod baz {
|
2014-08-13 02:25:05 +00:00
|
|
|
pub use std::str as x;
|
2010-12-25 01:03:46 +00:00
|
|
|
}
|
|
|
|
|
2013-12-14 05:14:08 +00:00
|
|
|
#[start]
|
2015-03-26 00:06:52 +00:00
|
|
|
pub fn start(_: isize, _: *const *const u8) -> isize { 0 }
|