rust/compiler/rustc_parse
bors 4e282795d7 Auto merge of #87662 - FabianWolff:rb-string, r=estebank
Suggest `br` if the unknown string prefix `rb` is found

Currently, for the following code:
```rust
fn main() {
    rb"abc";
}
```
we issue the following suggestion:
```
help: consider inserting whitespace here
  |
2 |     rb "abc";
  |       --
```
With my changes (only in edition 2021, where unknown prefixes became an error), I get:
```
help: use `br` for a raw byte string
  |
2 |     br"abc";
  |     ^^
```
2021-07-31 20:20:18 +00:00
..
src Auto merge of #87662 - FabianWolff:rb-string, r=estebank 2021-07-31 20:20:18 +00:00
Cargo.toml rustc_parse: Remove unused dependency smallvec 2021-06-25 01:12:59 -07:00