]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/transparent-basic.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / hygiene / transparent-basic.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-pass
12 // aux-build:transparent-basic.rs
13
14 #![feature(decl_macro, rustc_attrs)]
15
16 extern crate transparent_basic;
17
18 #[rustc_transparent_macro]
19 macro binding() {
20     let x = 10;
21 }
22
23 #[rustc_transparent_macro]
24 macro label() {
25     break 'label
26 }
27
28 macro_rules! legacy {
29     () => {
30         binding!();
31         let y = x;
32     }
33 }
34
35 fn legacy_interaction1() {
36     legacy!();
37 }
38
39 struct S;
40
41 fn check_dollar_crate() {
42     // `$crate::S` inside the macro resolves to `S` from this crate.
43     transparent_basic::dollar_crate!();
44 }
45
46 fn main() {
47     binding!();
48     let y = x;
49
50     'label: loop {
51         label!();
52     }
53 }