blob: 2d339898a48aec9b673e1129755c5840cae598d4 [file] [log] [blame] [edit]
// `br` and `rb` are easy to confuse; check that we issue a suggestion to help.
//@ edition:2021
fn main() {
rb"abc";
//~^ ERROR: prefix `rb` is unknown
//~| HELP: use `br` for a raw byte string
//~| ERROR: expected one of
}