rust/src/test/ui/parser/underscore-suffix-for-string.stderr
Nicholas Nethercote dba6fc3ef5 Make underscore_literal_suffix a hard error.
It's been a warning for 5.5 years. Time to make it a hard error.

Closes #42326.
2022-11-07 10:00:36 +11:00

14 lines
342 B
Text

error: underscore literal suffix is not allowed
--> $DIR/underscore-suffix-for-string.rs:6:18
|
LL | let _ = "Foo"_;
| ^
error: underscore literal suffix is not allowed
--> $DIR/underscore-suffix-for-string.rs:15:16
|
LL | sink!("Foo"_);
| ^
error: aborting due to 2 previous errors