summary refs log tree commit diff
path: root/src/test/ui/proc-macro/issue-73933-procedural-masquerade.stdout
blob: 8edd68f8a3b849dc0605203bf52b68a9f4e038d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PRINT-DERIVE INPUT (DISPLAY): enum ProceduralMasqueradeDummyType { Input, }
PRINT-DERIVE RE-COLLECTED (DISPLAY): enum ProceduralMasqueradeDummyType { Input }
PRINT-DERIVE INPUT (DEBUG): TokenStream [
    Ident {
        ident: "enum",
        span: #0 bytes(100..104),
    },
    Ident {
        ident: "ProceduralMasqueradeDummyType",
        span: #0 bytes(105..134),
    },
    Group {
        delimiter: Brace,
        stream: TokenStream [
            Ident {
                ident: "Input",
                span: #0 bytes(186..191),
            },
        ],
        span: #0 bytes(135..193),
    },
]