rust/tests/ui/rust-2018/try-ident.stderr
Jana Dönszelmann 1ef1ec13d8
bless the tests
2025-12-10 15:15:56 +01:00

26 lines
1 KiB
Text

warning: `try` is a keyword in the 2018 edition
--> $DIR/try-ident.rs:8:5
|
LL | try();
| ^^^ help: you can use a raw identifier to stay compatible: `r#try`
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
= note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2018/new-keywords.html>
note: the lint level is defined here
--> $DIR/try-ident.rs:5:9
|
LL | #![warn(rust_2018_compatibility)]
| ^^^^^^^^^^^^^^^^^^^^^^^
= note: `#[warn(keyword_idents_2018)]` implied by `#[warn(rust_2018_compatibility)]`
warning: `try` is a keyword in the 2018 edition
--> $DIR/try-ident.rs:13:4
|
LL | fn try() {
| ^^^ help: you can use a raw identifier to stay compatible: `r#try`
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
= note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2018/new-keywords.html>
warning: 2 warnings emitted