2019-07-14 10:34:13 +00:00
|
|
|
//@ check-pass
|
2018-06-24 16:54:23 +00:00
|
|
|
//@ aux-build:transparent-basic.rs
|
|
|
|
|
|
|
|
#![feature(decl_macro, rustc_attrs)]
|
|
|
|
|
|
|
|
extern crate transparent_basic;
|
|
|
|
|
2019-06-23 13:37:28 +00:00
|
|
|
#[rustc_macro_transparency = "transparent"]
|
2018-06-24 16:54:23 +00:00
|
|
|
macro binding() {
|
|
|
|
let x = 10;
|
|
|
|
}
|
|
|
|
|
2019-06-23 13:37:28 +00:00
|
|
|
#[rustc_macro_transparency = "transparent"]
|
2018-06-24 16:54:23 +00:00
|
|
|
macro label() {
|
|
|
|
break 'label
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! legacy {
|
|
|
|
() => {
|
|
|
|
binding!();
|
|
|
|
let y = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn legacy_interaction1() {
|
|
|
|
legacy!();
|
|
|
|
}
|
|
|
|
|
|
|
|
struct S;
|
|
|
|
|
|
|
|
fn check_dollar_crate() {
|
|
|
|
// `$crate::S` inside the macro resolves to `S` from this crate.
|
|
|
|
transparent_basic::dollar_crate!();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
binding!();
|
|
|
|
let y = x;
|
|
|
|
|
|
|
|
'label: loop {
|
|
|
|
label!();
|
|
|
|
}
|
|
|
|
}
|