2025-08-20 14:02:39 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/5950
|
2019-11-04 00:00:00 +00:00
|
|
|
//@ check-pass
|
2013-12-16 17:04:02 -08:00
|
|
|
|
2014-08-12 19:25:05 -07:00
|
|
|
pub use local as local_alias;
|
2013-12-16 17:04:02 -08:00
|
|
|
|
2015-03-16 09:00:41 +13:00
|
|
|
pub mod local { }
|
2013-12-16 17:04:02 -08:00
|
|
|
|
2014-01-03 15:30:54 -08:00
|
|
|
pub fn main() {}
|