mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
9 lines
197 B
Rust
9 lines
197 B
Rust
//@ aux-crate:priv:reexport_alias=reexport-alias.rs
|
|
//@ compile-flags: -Zunstable-options --extern equivalent
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
extern crate reexport_alias;
|
|
|
|
pub use reexport_alias::number;
|