]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/raw-byte-string-prefix.rs
Auto merge of #106399 - estebank:type-err-span-label, r=nagisa
[rust.git] / tests / ui / suggestions / raw-byte-string-prefix.rs
1 // `br` and `rb` are easy to confuse; check that we issue a suggestion to help.
2
3 // edition:2021
4
5 fn main() {
6     rb"abc";
7     //~^ ERROR: prefix `rb` is unknown
8     //~| HELP: use `br` for a raw byte string
9     //~| ERROR: expected one of
10 }