|
| 1 | +error: prefix `r` is unknown |
| 2 | + --> <proc-macro source code>:1:1 |
| 3 | + | |
| 4 | +LL | r'r' |
| 5 | + | ^ unknown prefix |
| 6 | + | |
| 7 | + = note: prefixed identifiers and literals are reserved since Rust 2021 |
| 8 | +help: consider inserting whitespace here |
| 9 | + | |
| 10 | +LL | r 'r' |
| 11 | + | + |
| 12 | + |
| 13 | +error: prefix `c` is unknown |
| 14 | + --> <proc-macro source code>:1:1 |
| 15 | + | |
| 16 | +LL | c'r' |
| 17 | + | ^ unknown prefix |
| 18 | + | |
| 19 | + = note: prefixed identifiers and literals are reserved since Rust 2021 |
| 20 | +help: consider inserting whitespace here |
| 21 | + | |
| 22 | +LL | c 'r' |
| 23 | + | + |
| 24 | + |
| 25 | +error: unexpected closing delimiter: `)` |
| 26 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 27 | + | |
| 28 | +LL | nonfatal_parsing::run!(); |
| 29 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ unexpected closing delimiter |
| 30 | + | |
| 31 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 32 | + |
| 33 | +error: unexpected closing delimiter: `]` |
| 34 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 35 | + | |
| 36 | +LL | nonfatal_parsing::run!(); |
| 37 | + | -^^^^^^^^^^^^^^^^^^^^^^^ |
| 38 | + | | |
| 39 | + | the nearest open delimiter |
| 40 | + | missing open `(` for this delimiter |
| 41 | + | unexpected closing delimiter |
| 42 | + | |
| 43 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 44 | + |
| 45 | +error: found invalid character; only `#` is allowed in raw string delimitation: \u{0} |
| 46 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 47 | + | |
| 48 | +LL | nonfatal_parsing::run!(); |
| 49 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 50 | + | |
| 51 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 52 | + |
| 53 | +error: invalid digit for a base 2 literal |
| 54 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 55 | + | |
| 56 | +LL | nonfatal_parsing::run!(); |
| 57 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 58 | + | |
| 59 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 60 | + |
| 61 | +error[E0768]: no valid digits found for number |
| 62 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 63 | + | |
| 64 | +LL | nonfatal_parsing::run!(); |
| 65 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 66 | + | |
| 67 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 68 | + |
| 69 | +error: binary float literal is not supported |
| 70 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 71 | + | |
| 72 | +LL | nonfatal_parsing::run!(); |
| 73 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 74 | + | |
| 75 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 76 | + |
| 77 | +error: character constant must be escaped: `'` |
| 78 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 79 | + | |
| 80 | +LL | nonfatal_parsing::run!(); |
| 81 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 82 | + | |
| 83 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 84 | +help: escape the character |
| 85 | + | |
| 86 | +LL - nonfatal_parsing::run!(); |
| 87 | +LL + nonfatal_parsing::run!(\'; |
| 88 | + | |
| 89 | + |
| 90 | +error: character constant must be escaped: `\n` |
| 91 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 92 | + | |
| 93 | +LL | nonfatal_parsing::run!(); |
| 94 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 95 | + | |
| 96 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 97 | +help: escape the character |
| 98 | + | |
| 99 | +LL - nonfatal_parsing::run!(); |
| 100 | +LL + nonfatal_parsing::run!(\n; |
| 101 | + | |
| 102 | + |
| 103 | +error: too many `#` symbols: raw strings may be delimited by up to 255 `#` symbols, but found 256 |
| 104 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 105 | + | |
| 106 | +LL | nonfatal_parsing::run!(); |
| 107 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 108 | + | |
| 109 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 110 | + |
| 111 | +error: invalid digit for a base 2 literal |
| 112 | + --> $DIR/nonfatal-parsing.rs:15:5 |
| 113 | + | |
| 114 | +LL | nonfatal_parsing::run!(); |
| 115 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 116 | + | |
| 117 | + = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no` |
| 118 | + = note: this error originates in the macro `nonfatal_parsing::run` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 119 | + |
| 120 | +error: unexpected closing delimiter: `)` |
| 121 | + --> <proc-macro source code>:1:3 |
| 122 | + | |
| 123 | +LL | 1 ) 2 |
| 124 | + | ^ unexpected closing delimiter |
| 125 | + |
| 126 | +error: unexpected closing delimiter: `]` |
| 127 | + --> <proc-macro source code>:1:10 |
| 128 | + | |
| 129 | +LL | ( x [ ) ] |
| 130 | + | - - ^ unexpected closing delimiter |
| 131 | + | | | |
| 132 | + | | missing open `(` for this delimiter |
| 133 | + | the nearest open delimiter |
| 134 | + |
| 135 | +error: found invalid character; only `#` is allowed in raw string delimitation: \u{0} |
| 136 | + --> <proc-macro source code>:1:1 |
| 137 | + | |
| 138 | +LL | r# |
| 139 | + | ^^ |
| 140 | + |
| 141 | +error: invalid digit for a base 2 literal |
| 142 | + --> <proc-macro source code>:1:3 |
| 143 | + | |
| 144 | +LL | 0b2 |
| 145 | + | ^ |
| 146 | + |
| 147 | +error[E0768]: no valid digits found for number |
| 148 | + --> <proc-macro source code>:1:1 |
| 149 | + | |
| 150 | +LL | 0bf32 |
| 151 | + | ^^ |
| 152 | + |
| 153 | +error: binary float literal is not supported |
| 154 | + --> <proc-macro source code>:1:1 |
| 155 | + | |
| 156 | +LL | 0b0.0f32 |
| 157 | + | ^^^^^ |
| 158 | + |
| 159 | +error: character constant must be escaped: `'` |
| 160 | + --> <proc-macro source code>:1:2 |
| 161 | + | |
| 162 | +LL | ''' |
| 163 | + | ^ |
| 164 | + | |
| 165 | +help: escape the character |
| 166 | + | |
| 167 | +LL | '\'' |
| 168 | + | + |
| 169 | + |
| 170 | +error: character constant must be escaped: `\n` |
| 171 | + --> <proc-macro source code>:1:2 |
| 172 | + | |
| 173 | +LL | ' |
| 174 | + | __^ |
| 175 | +LL | | ' |
| 176 | + | |_^ |
| 177 | + | |
| 178 | +help: escape the character |
| 179 | + | |
| 180 | +LL | '\n' |
| 181 | + | ++ |
| 182 | + |
| 183 | +error: too many `#` symbols: raw strings may be delimited by up to 255 `#` symbols, but found 256 |
| 184 | + --> <proc-macro source code>:1:1 |
| 185 | + | |
| 186 | +LL | r#######################################...################################################## |
| 187 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 188 | + |
| 189 | +error: invalid digit for a base 2 literal |
| 190 | + --> <proc-macro source code>:1:9 |
| 191 | + | |
| 192 | +LL | /*a*/ 0b2 // |
| 193 | + | ^ |
| 194 | + |
| 195 | +error: aborting due to 22 previous errors |
| 196 | + |
| 197 | +For more information about this error, try `rustc --explain E0768`. |
0 commit comments