2019-04-11 05:47:04 +00:00
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:49:22
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_constructor.unwrap_or(make());
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(make)`
|
2021-12-06 11:33:31 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::or-fun-call` implied by `-D warnings`
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a call to `new`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:52:14
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_new.unwrap_or(Vec::new());
|
2022-07-18 07:39:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:55:21
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_const_args.unwrap_or(Vec::with_capacity(12));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| Vec::with_capacity(12))`
|
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:58:14
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_err.unwrap_or(make());
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|_| make())`
|
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:61:19
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_err_args.unwrap_or(Vec::with_capacity(12));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|_| Vec::with_capacity(12))`
|
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a call to `default`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:64:24
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_default_trait.unwrap_or(Default::default());
|
2022-07-18 07:39:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a call to `default`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:67:23
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_default_type.unwrap_or(u64::default());
|
2022-07-18 07:39:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2019-04-11 05:47:04 +00:00
|
|
|
|
2021-08-12 09:16:25 +00:00
|
|
|
error: use of `unwrap_or` followed by a function call
|
|
|
|
--> $DIR/or_fun_call.rs:70:18
|
|
|
|
|
|
|
|
|
LL | self_default.unwrap_or(<FakeDefault>::default());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(<FakeDefault>::default)`
|
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a call to `default`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:73:18
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
|
LL | real_default.unwrap_or(<FakeDefault as Default>::default());
|
2022-07-18 07:39:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2021-08-12 09:16:25 +00:00
|
|
|
|
2020-04-01 18:14:05 +00:00
|
|
|
error: use of `unwrap_or` followed by a call to `new`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:76:14
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | with_vec.unwrap_or(vec![]);
|
2022-07-18 07:39:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:79:21
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
|
|
|
LL | without_default.unwrap_or(Foo::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(Foo::new)`
|
|
|
|
|
2022-09-09 11:36:26 +00:00
|
|
|
error: use of `or_insert` followed by a call to `new`
|
|
|
|
--> $DIR/or_fun_call.rs:82:19
|
|
|
|
|
|
|
|
|
LL | map.entry(42).or_insert(String::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `or_default()`
|
|
|
|
|
|
|
|
error: use of `or_insert` followed by a call to `new`
|
|
|
|
--> $DIR/or_fun_call.rs:85:23
|
|
|
|
|
|
|
|
|
LL | map_vec.entry(42).or_insert(vec![]);
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try this: `or_default()`
|
|
|
|
|
|
|
|
error: use of `or_insert` followed by a call to `new`
|
|
|
|
--> $DIR/or_fun_call.rs:88:21
|
|
|
|
|
|
|
|
|
LL | btree.entry(42).or_insert(String::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `or_default()`
|
|
|
|
|
|
|
|
error: use of `or_insert` followed by a call to `new`
|
|
|
|
--> $DIR/or_fun_call.rs:91:25
|
|
|
|
|
|
|
|
|
LL | btree_vec.entry(42).or_insert(vec![]);
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try this: `or_default()`
|
|
|
|
|
2022-08-31 13:24:45 +00:00
|
|
|
error: use of `unwrap_or` followed by a call to `new`
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:94:21
|
2019-04-11 05:47:04 +00:00
|
|
|
|
|
2022-08-31 13:24:45 +00:00
|
|
|
LL | let _ = stringy.unwrap_or(String::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2019-04-11 05:47:04 +00:00
|
|
|
|
2020-11-23 12:51:04 +00:00
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:102:21
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Some(1).unwrap_or(map[&1]);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| map[&1])`
|
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:104:21
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Some(1).unwrap_or(map[&1]);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| map[&1])`
|
|
|
|
|
2019-05-12 08:18:38 +00:00
|
|
|
error: use of `or` followed by a function call
|
2021-08-12 09:16:25 +00:00
|
|
|
--> $DIR/or_fun_call.rs:128:35
|
2019-05-12 08:18:38 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Some("a".to_string()).or(Some("b".to_string()));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `or_else(|| Some("b".to_string()))`
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/or_fun_call.rs:167:14
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
2021-12-06 11:33:31 +00:00
|
|
|
LL | None.unwrap_or(ptr_to_ref(s));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| ptr_to_ref(s))`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/or_fun_call.rs:173:14
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
2021-12-06 11:33:31 +00:00
|
|
|
LL | None.unwrap_or(unsafe { ptr_to_ref(s) });
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| unsafe { ptr_to_ref(s) })`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a function call
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/or_fun_call.rs:175:14
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
2021-12-06 11:33:31 +00:00
|
|
|
LL | None.unwrap_or( unsafe { ptr_to_ref(s) } );
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| unsafe { ptr_to_ref(s) })`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
2022-01-17 12:29:07 +00:00
|
|
|
error: use of `unwrap_or` followed by a call to `new`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:189:14
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
LL | .unwrap_or(String::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a call to `new`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:202:14
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
LL | .unwrap_or(String::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a call to `new`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:214:14
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
LL | .unwrap_or(String::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
|
|
error: use of `unwrap_or` followed by a call to `new`
|
2022-07-18 07:39:37 +00:00
|
|
|
--> $DIR/or_fun_call.rs:225:10
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
LL | .unwrap_or(String::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_default()`
|
2022-01-17 12:29:07 +00:00
|
|
|
|
2022-09-09 11:36:26 +00:00
|
|
|
error: aborting due to 26 previous errors
|
2019-04-11 05:47:04 +00:00
|
|
|
|