mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
101 lines
4.1 KiB
Text
101 lines
4.1 KiB
Text
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:46:14
|
|
|
|
|
LL | with_new.unwrap_or_else(Vec::new);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
|
= note: `-D clippy::unwrap-or-default` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::unwrap_or_default)]`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:60:23
|
|
|
|
|
LL | with_real_default.unwrap_or_else(<HasDefaultAndDuplicate as Default>::default);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:63:24
|
|
|
|
|
LL | with_default_trait.unwrap_or_else(Default::default);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:66:23
|
|
|
|
|
LL | with_default_type.unwrap_or_else(u64::default);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:69:23
|
|
|
|
|
LL | with_default_type.unwrap_or_else(Vec::new);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:72:18
|
|
|
|
|
LL | empty_string.unwrap_or_else(|| "".to_string());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:76:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:79:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:82:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:85:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:88:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:91:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:94:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:97:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `unwrap_or_else` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:113:12
|
|
|
|
|
LL | option.unwrap_or_else(Vec::new).push(1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
|
|
|
error: use of `or_insert_with` to construct default value
|
|
--> tests/ui/unwrap_or_else_default.rs:130:32
|
|
|
|
|
LL | let _ = inner_map.entry(0).or_insert_with(Default::default);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `or_default()`
|
|
|
|
error: aborting due to 16 previous errors
|
|
|