]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/meta-macro-hygiene.stdout
Auto merge of #82585 - TrolledWoods:master, r=dtolnay
[rust.git] / src / test / ui / proc-macro / meta-macro-hygiene.stdout
1 Def site: $DIR/auxiliary/make-macro.rs:7:9: 7:56 (#5)
2 Input: TokenStream [Ident { ident: "$crate", span: $DIR/meta-macro-hygiene.rs:23:37: 23:43 (#4) }, Punct { ch: ':', spacing: Joint, span: $DIR/meta-macro-hygiene.rs:23:43: 23:45 (#4) }, Punct { ch: ':', spacing: Alone, span: $DIR/meta-macro-hygiene.rs:23:43: 23:45 (#4) }, Ident { ident: "dummy", span: $DIR/meta-macro-hygiene.rs:23:45: 23:50 (#4) }, Punct { ch: '!', spacing: Alone, span: $DIR/meta-macro-hygiene.rs:23:50: 23:51 (#4) }, Group { delimiter: Parenthesis, stream: TokenStream [], span: $DIR/meta-macro-hygiene.rs:23:51: 23:53 (#4) }]
3 Respanned: TokenStream [Ident { ident: "$crate", span: $DIR/auxiliary/make-macro.rs:7:9: 7:56 (#5) }, Punct { ch: ':', spacing: Joint, span: $DIR/auxiliary/make-macro.rs:7:9: 7:56 (#5) }, Punct { ch: ':', spacing: Alone, span: $DIR/auxiliary/make-macro.rs:7:9: 7:56 (#5) }, Ident { ident: "dummy", span: $DIR/auxiliary/make-macro.rs:7:9: 7:56 (#5) }, Punct { ch: '!', spacing: Alone, span: $DIR/auxiliary/make-macro.rs:7:9: 7:56 (#5) }, Group { delimiter: Parenthesis, stream: TokenStream [], span: $DIR/auxiliary/make-macro.rs:7:9: 7:56 (#5) }]
4 #![feature /* 0#0 */(prelude_import)]
5 // aux-build:make-macro.rs
6 // aux-build:meta-macro.rs
7 // edition:2018
8 // compile-flags: -Z span-debug -Z macro-backtrace -Z unpretty=expanded,hygiene -Z trim-diagnostic-paths=no
9 // check-pass
10 // normalize-stdout-test "\d+#" -> "0#"
11 //
12 // We don't care about symbol ids, so we set them all to 0
13 // in the stdout
14
15 #![no_std /* 0#0 */]
16 #[prelude_import /* 0#1 */]
17 use core /* 0#1 */::prelude /* 0#1 */::rust_2018 /* 0#1 */::*;
18 #[macro_use /* 0#1 */]
19 extern crate core /* 0#1 */;
20 #[macro_use /* 0#1 */]
21 extern crate compiler_builtins /* 0#1 */;
22 // Don't load unnecessary hygiene information from std
23 extern crate std /* 0#0 */;
24
25 extern crate meta_macro /* 0#0 */;
26
27 macro_rules! produce_it
28     /*
29     0#0
30     */ {
31     () =>
32     {
33         meta_macro :: print_def_site ! ($ crate :: dummy ! ()) ;
34         // `print_def_site!` will respan the `$crate` identifier
35         // with `Span::def_site()`. This should cause it to resolve
36         // relative to `meta_macro`, *not* `make_macro` (despite
37         // the fact that that `print_def_site` is produced by
38         // a `macro_rules!` macro in `make_macro`).
39     }
40 }
41
42 fn main /* 0#0 */() { ; }
43
44 /*
45 Expansions:
46 0: parent: ExpnId(0), call_site_ctxt: #0, def_site_ctxt: #0, kind: Root
47 1: parent: ExpnId(0), call_site_ctxt: #0, def_site_ctxt: #0, kind: AstPass(StdImports)
48 2: parent: ExpnId(0), call_site_ctxt: #0, def_site_ctxt: #0, kind: Macro(Bang, "produce_it")
49 3: parent: ExpnId(0), call_site_ctxt: #0, def_site_ctxt: #0, kind: AstPass(StdImports)
50 4: parent: ExpnId(2), call_site_ctxt: #4, def_site_ctxt: #0, kind: Macro(Bang, "meta_macro::print_def_site")
51 5: parent: ExpnId(4), call_site_ctxt: #5, def_site_ctxt: #0, kind: Macro(Bang, "$crate::dummy")
52
53 SyntaxContexts:
54 #0: parent: #0, outer_mark: (ExpnId(0), Opaque)
55 #1: parent: #0, outer_mark: (ExpnId(1), Opaque)
56 #2: parent: #0, outer_mark: (ExpnId(1), Transparent)
57 #3: parent: #0, outer_mark: (ExpnId(3), Opaque)
58 #4: parent: #0, outer_mark: (ExpnId(2), SemiTransparent)
59 #5: parent: #0, outer_mark: (ExpnId(4), Opaque)
60 #6: parent: #4, outer_mark: (ExpnId(4), Transparent)
61 #7: parent: #0, outer_mark: (ExpnId(4), SemiTransparent)
62 #8: parent: #0, outer_mark: (ExpnId(5), Opaque)
63 #9: parent: #5, outer_mark: (ExpnId(5), Transparent)
64 #10: parent: #5, outer_mark: (ExpnId(5), SemiTransparent)
65 */