rust/tests/ui/suggestions/raw-c-string-prefix.rs
2025-04-23 03:15:43 +05:00

10 lines
240 B
Rust

// `rc` and `cr` are easy to confuse; check that we issue a suggestion to help.
//@ edition:2021
fn main() {
rc"abc";
//~^ ERROR: prefix `rc` is unknown
//~| HELP: use `cr` for a raw C-string
//~| ERROR: expected one of
}