about summary refs log tree commit diff
path: root/tests/ui/suggestions/raw-byte-string-prefix.stderr
blob: 20f255c2b39991f4fc7761ac3567bcc6628c0a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error: prefix `rb` is unknown
  --> $DIR/raw-byte-string-prefix.rs:6:5
   |
LL |     rb"abc";
   |     ^^ unknown prefix
   |
   = note: prefixed identifiers and literals are reserved since Rust 2021
help: use `br` for a raw byte string
   |
LL -     rb"abc";
LL +     br"abc";
   |

error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `"abc"`
  --> $DIR/raw-byte-string-prefix.rs:6:7
   |
LL |     rb"abc";
   |       ^^^^^ expected one of 8 possible tokens

error: aborting due to 2 previous errors