summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/literal-to-string.stdout
blob: 7b27fcf798b12573b227832ba49167524c1a2dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
TokenStream [
    Literal {
        kind: Integer,
        symbol: "1",
        suffix: None,
        span: #0 bytes(172..173),
    },
    Literal {
        kind: Integer,
        symbol: "17",
        suffix: Some("u8"),
        span: #0 bytes(182..186),
    },
    Literal {
        kind: Float,
        symbol: "42.",
        suffix: None,
        span: #0 bytes(195..198),
    },
    Literal {
        kind: Float,
        symbol: "3.14",
        suffix: Some("f32"),
        span: #0 bytes(207..214),
    },
    Literal {
        kind: Byte,
        symbol: "a",
        suffix: None,
        span: #0 bytes(223..227),
    },
    Literal {
        kind: Byte,
        symbol: "\xFF",
        suffix: None,
        span: #0 bytes(236..243),
    },
    Literal {
        kind: Char,
        symbol: "c",
        suffix: None,
        span: #0 bytes(252..255),
    },
    Literal {
        kind: Char,
        symbol: "\x32",
        suffix: None,
        span: #0 bytes(264..270),
    },
    Literal {
        kind: Str,
        symbol: "\\"str\\"",
        suffix: None,
        span: #0 bytes(279..288),
    },
    Literal {
        kind: StrRaw(1),
        symbol: "\"raw\" str",
        suffix: None,
        span: #0 bytes(297..311),
    },
    Literal {
        kind: StrRaw(3),
        symbol: "very ##\"raw\"## str",
        suffix: None,
        span: #0 bytes(320..347),
    },
    Literal {
        kind: ByteStr,
        symbol: "\\"byte\\" str",
        suffix: None,
        span: #0 bytes(356..371),
    },
    Literal {
        kind: ByteStrRaw(1),
        symbol: "\"raw\" \"byte\" str",
        suffix: None,
        span: #0 bytes(380..402),
    },
    Literal {
        kind: CStr,
        symbol: "\\"c\\" str",
        suffix: None,
        span: #0 bytes(411..423),
    },
    Literal {
        kind: CStrRaw(1),
        symbol: "\"raw\" \"c\" str",
        suffix: None,
        span: #0 bytes(432..451),
    },
]
1
17u8
42.
3.14f32
b'a'
b'\xFF'
'c'
'\x32'
"\"str\""
r#""raw" str"#
r###"very ##"raw"## str"###
b"\"byte\" str"
br#""raw" "byte" str"#
c"\"c\" str"
cr#""raw" "c" str"#