]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/raw/raw-byte-string-literals.stderr
Merge commit '8da837185714cefbb261e93e9846afb11c1dc60e' into sync-rustfmt-subtree
[rust.git] / src / test / ui / parser / raw / raw-byte-string-literals.stderr
1 error: bare CR not allowed in raw string
2   --> $DIR/raw-byte-string-literals.rs:4:9
3    |
4 LL |     br"a\r";
5    |         ^
6
7 error: raw byte string must be ASCII
8   --> $DIR/raw-byte-string-literals.rs:5:8
9    |
10 LL |     br"é";
11    |        ^ must be ASCII
12
13 error: found invalid character; only `#` is allowed in raw string delimitation: ~
14   --> $DIR/raw-byte-string-literals.rs:6:5
15    |
16 LL |     br##~"a"~##;
17    |     ^^^^^
18
19 error: aborting due to 3 previous errors
20