2018-10-30 20:21:23 +00:00
|
|
|
error: use of `expect` followed by a function call
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/expect_fun_call.rs:27:26
|
2018-10-30 20:21:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | with_none_and_format.expect(&format!("Error {}: fake error", error_code));
|
2018-10-30 20:21:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| panic!("Error {}: fake error", error_code))`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::expect-fun-call` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: use of `expect` followed by a function call
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/expect_fun_call.rs:30:26
|
2018-10-30 20:21:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | with_none_and_as_str.expect(format!("Error {}: fake error", error_code).as_str());
|
2018-10-30 20:21:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| panic!("Error {}: fake error", error_code))`
|
|
|
|
|
|
|
|
error: use of `expect` followed by a function call
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/expect_fun_call.rs:40:25
|
2018-10-30 20:21:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | with_err_and_format.expect(&format!("Error {}: fake error", error_code));
|
2018-10-30 20:21:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|_| panic!("Error {}: fake error", error_code))`
|
|
|
|
|
|
|
|
error: use of `expect` followed by a function call
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/expect_fun_call.rs:43:25
|
2018-10-30 20:21:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | with_err_and_as_str.expect(format!("Error {}: fake error", error_code).as_str());
|
2018-10-30 20:21:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|_| panic!("Error {}: fake error", error_code))`
|
|
|
|
|
|
|
|
error: use of `expect` followed by a function call
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/expect_fun_call.rs:58:17
|
2018-10-30 20:21:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Some("foo").expect({ &format!("error") });
|
2018-10-30 20:21:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| { let msg = { &format!("error") }; panic!(msg) }))`
|
|
|
|
|
|
|
|
error: use of `expect` followed by a function call
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/expect_fun_call.rs:59:17
|
2018-10-30 20:21:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Some("foo").expect(format!("error").as_ref());
|
2018-10-30 20:21:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| panic!("error"))`
|
|
|
|
|
2019-01-19 12:13:06 +00:00
|
|
|
error: use of `expect` followed by a function call
|
|
|
|
--> $DIR/expect_fun_call.rs:61:17
|
|
|
|
|
|
|
|
|
LL | Some("foo").expect(format!("{} {}", 1, 2).as_ref());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| panic!("{} {}", 1, 2))`
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2018-10-30 20:21:23 +00:00
|
|
|
|