summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unwrap_or_else_default.stderr
blob: d2b9212223f7795957c33f5549a84e9af0a74f53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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`

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()`

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()`

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