mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
17 lines
311 B
Rust
17 lines
311 B
Rust
// run-pass
|
|
|
|
// Test that a macro can correctly expand the alias
|
|
// in an `extern crate self as ALIAS` item.
|
|
|
|
fn the_answer() -> usize { 42 }
|
|
|
|
macro_rules! alias_self {
|
|
($alias:ident) => { extern crate self as $alias; }
|
|
}
|
|
|
|
alias_self!(the_alias);
|
|
|
|
fn main() {
|
|
assert_eq!(the_alias::the_answer(), 42);
|
|
}
|