2021-01-15 09:56:44 +00:00
|
|
|
error: unnecessary `Symbol` to string conversion
|
2021-11-11 11:54:53 +00:00
|
|
|
--> $DIR/unnecessary_symbol_str.rs:15:5
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | Symbol::intern("foo").as_str() == "clippy";
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Symbol::intern("foo") == rustc_span::sym::clippy`
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/unnecessary_symbol_str.rs:3:9
|
|
|
|
|
|
|
|
|
LL | #![deny(clippy::internal)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
= note: `#[deny(clippy::unnecessary_symbol_str)]` implied by `#[deny(clippy::internal)]`
|
|
|
|
|
|
|
|
error: unnecessary `Symbol` to string conversion
|
2021-11-11 11:54:53 +00:00
|
|
|
--> $DIR/unnecessary_symbol_str.rs:16:5
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | Symbol::intern("foo").to_string() == "self";
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Symbol::intern("foo") == rustc_span::symbol::kw::SelfLower`
|
|
|
|
|
|
|
|
error: unnecessary `Symbol` to string conversion
|
2021-11-11 11:54:53 +00:00
|
|
|
--> $DIR/unnecessary_symbol_str.rs:17:5
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | Symbol::intern("foo").to_ident_string() != "Self";
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Symbol::intern("foo") != rustc_span::symbol::kw::SelfUpper`
|
|
|
|
|
|
|
|
error: unnecessary `Symbol` to string conversion
|
2021-11-11 11:54:53 +00:00
|
|
|
--> $DIR/unnecessary_symbol_str.rs:18:5
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
2021-10-17 20:20:30 +00:00
|
|
|
LL | &*Ident::empty().as_str() == "clippy";
|
2021-10-21 10:18:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Ident::empty().name == rustc_span::sym::clippy`
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
error: unnecessary `Symbol` to string conversion
|
2021-11-11 11:54:53 +00:00
|
|
|
--> $DIR/unnecessary_symbol_str.rs:19:5
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
2021-10-17 20:20:30 +00:00
|
|
|
LL | "clippy" == Ident::empty().to_string();
|
2021-10-21 10:18:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `rustc_span::sym::clippy == Ident::empty().name`
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2020-12-30 21:52:15 +00:00
|
|
|
|