mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
76 lines
2.4 KiB
Text
76 lines
2.4 KiB
Text
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:55:19
|
|
|
|
|
LL | let b: &str = a.deref();
|
|
| ^^^^^^^^^ help: try: `&*a`
|
|
|
|
|
= note: `-D clippy::explicit-deref-methods` implied by `-D warnings`
|
|
|
|
error: explicit `deref_mut` method call
|
|
--> $DIR/explicit_deref_methods.rs:57:23
|
|
|
|
|
LL | let b: &mut str = a.deref_mut();
|
|
| ^^^^^^^^^^^^^ help: try: `&mut **a`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:60:39
|
|
|
|
|
LL | let b: String = format!("{}, {}", a.deref(), a.deref());
|
|
| ^^^^^^^^^ help: try: `&*a`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:60:50
|
|
|
|
|
LL | let b: String = format!("{}, {}", a.deref(), a.deref());
|
|
| ^^^^^^^^^ help: try: `&*a`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:62:20
|
|
|
|
|
LL | println!("{}", a.deref());
|
|
| ^^^^^^^^^ help: try: `&*a`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:65:11
|
|
|
|
|
LL | match a.deref() {
|
|
| ^^^^^^^^^ help: try: `&*a`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:69:28
|
|
|
|
|
LL | let b: String = concat(a.deref());
|
|
| ^^^^^^^^^ help: try: `&*a`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:71:13
|
|
|
|
|
LL | let b = just_return(a).deref();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `just_return(a)`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:73:28
|
|
|
|
|
LL | let b: String = concat(just_return(a).deref());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `just_return(a)`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:75:19
|
|
|
|
|
LL | let b: &str = a.deref().deref();
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `&**a`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:78:13
|
|
|
|
|
LL | let b = opt_a.unwrap().deref();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*opt_a.unwrap()`
|
|
|
|
error: explicit `deref` method call
|
|
--> $DIR/explicit_deref_methods.rs:115:31
|
|
|
|
|
LL | let b: &str = expr_deref!(a.deref());
|
|
| ^^^^^^^^^ help: try: `&*a`
|
|
|
|
error: aborting due to 12 previous errors
|
|
|