summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/raw-byte-string-prefix.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/raw-byte-string-prefix.rs')
-rw-r--r--src/test/ui/suggestions/raw-byte-string-prefix.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/suggestions/raw-byte-string-prefix.rs b/src/test/ui/suggestions/raw-byte-string-prefix.rs
deleted file mode 100644
index 576561c31..000000000
--- a/src/test/ui/suggestions/raw-byte-string-prefix.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// `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
-}