2021-07-31 15:37:36 +02:00
|
|
|
// `br` and `rb` are easy to confuse; check that we issue a suggestion to help.
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ edition:2021
|
2021-07-31 15:37:36 +02:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
rb"abc";
|
|
|
|
|
//~^ ERROR: prefix `rb` is unknown
|
|
|
|
|
//~| HELP: use `br` for a raw byte string
|
|
|
|
|
//~| ERROR: expected one of
|
|
|
|
|
}
|