2021-12-30 14:10:43 +00:00
|
|
|
error: use of `.unwrap_or_else(..)` to construct default value
|
|
|
|
--> $DIR/unwrap_or_else_default.rs:48:5
|
|
|
|
|
|
|
|
|
LL | with_new.unwrap_or_else(Vec::new);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `with_new.unwrap_or_default()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::unwrap-or-else-default` implied by `-D warnings`
|
|
|
|
|
2021-08-12 09:16:25 +00:00
|
|
|
error: use of `.unwrap_or_else(..)` to construct default value
|
|
|
|
--> $DIR/unwrap_or_else_default.rs:62:5
|
|
|
|
|
|
|
|
|
LL | with_real_default.unwrap_or_else(<HasDefaultAndDuplicate as Default>::default);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `with_real_default.unwrap_or_default()`
|
|
|
|
|
|
|
|
error: use of `.unwrap_or_else(..)` to construct default value
|
|
|
|
--> $DIR/unwrap_or_else_default.rs:65:5
|
|
|
|
|
|
|
|
|
LL | with_default_trait.unwrap_or_else(Default::default);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `with_default_trait.unwrap_or_default()`
|
|
|
|
|
|
|
|
error: use of `.unwrap_or_else(..)` to construct default value
|
|
|
|
--> $DIR/unwrap_or_else_default.rs:68:5
|
|
|
|
|
|
|
|
|
LL | with_default_type.unwrap_or_else(u64::default);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `with_default_type.unwrap_or_default()`
|
|
|
|
|
2021-12-30 14:10:43 +00:00
|
|
|
error: use of `.unwrap_or_else(..)` to construct default value
|
|
|
|
--> $DIR/unwrap_or_else_default.rs:71:5
|
|
|
|
|
|
|
|
|
LL | with_default_type.unwrap_or_else(Vec::new);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `with_default_type.unwrap_or_default()`
|
|
|
|
|
2022-09-09 11:36:26 +00:00
|
|
|
error: use of `.unwrap_or_else(..)` to construct default value
|
|
|
|
--> $DIR/unwrap_or_else_default.rs:74:5
|
|
|
|
|
|
|
|
|
LL | empty_string.unwrap_or_else(|| "".to_string());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `empty_string.unwrap_or_default()`
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2021-08-12 09:16:25 +00:00
|
|
|
|