mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
10 lines
306 B
Text
10 lines
306 B
Text
error: called `.err().expect()` on a `Result` value
|
|
--> $DIR/err_expect.rs:10:16
|
|
|
|
|
LL | test_debug.err().expect("Testing debug type");
|
|
| ^^^^^^^^^^^^ help: try: `expect_err`
|
|
|
|
|
= note: `-D clippy::err-expect` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|