rust/tests/ui/use/use.rs

22 lines
329 B
Rust
Raw Normal View History

//@ run-pass
#![allow(stable_features)]
#![allow(unused_imports)]
#![feature(no_core, core)]
#![no_core]
extern crate std;
extern crate std as zed;
2010-12-25 01:03:46 +00:00
use std::str;
use zed::str as x;
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 {
pub use std::str as x;
2010-12-25 01:03:46 +00:00
}
fn main() {}