rust-clippy/tests/ui/redundant_pattern_matching_option.stderr

201 lines
6.8 KiB
Text
Raw Normal View History

error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:19:12
|
LL | if let None = None::<()> {}
2023-07-01 11:08:01 +00:00
| -------^^^^------------- help: try: `if None::<()>.is_none()`
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:21:12
|
LL | if let Some(_) = Some(42) {}
2023-07-01 11:08:01 +00:00
| -------^^^^^^^----------- help: try: `if Some(42).is_some()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:23:12
|
LL | if let Some(_) = Some(42) {
2023-07-01 11:08:01 +00:00
| -------^^^^^^^----------- help: try: `if Some(42).is_some()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:29:15
|
LL | while let Some(_) = Some(42) {}
2023-07-01 11:08:01 +00:00
| ----------^^^^^^^----------- help: try: `while Some(42).is_some()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:31:15
|
LL | while let None = Some(42) {}
2023-07-01 11:08:01 +00:00
| ----------^^^^----------- help: try: `while Some(42).is_none()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:33:15
|
LL | while let None = None::<()> {}
2023-07-01 11:08:01 +00:00
| ----------^^^^------------- help: try: `while None::<()>.is_none()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:36:15
|
LL | while let Some(_) = v.pop() {
2023-07-01 11:08:01 +00:00
| ----------^^^^^^^---------- help: try: `while v.pop().is_some()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:44:5
|
LL | / match Some(42) {
LL | | Some(_) => true,
LL | | None => false,
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `Some(42).is_some()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:49:5
|
LL | / match None::<()> {
LL | | Some(_) => false,
LL | | None => true,
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `None::<()>.is_none()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:54:13
|
LL | let _ = match None::<()> {
| _____________^
LL | | Some(_) => false,
LL | | None => true,
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `None::<()>.is_none()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:60:20
|
LL | let _ = if let Some(_) = opt { true } else { false };
2023-07-01 11:08:01 +00:00
| -------^^^^^^^------ help: try: `if opt.is_some()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:66:20
|
LL | let _ = if let Some(_) = gen_opt() {
2023-07-01 11:08:01 +00:00
| -------^^^^^^^------------ help: try: `if gen_opt().is_some()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:68:19
|
LL | } else if let None = gen_opt() {
2023-07-01 11:08:01 +00:00
| -------^^^^------------ help: try: `if gen_opt().is_none()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:74:12
|
LL | if let Some(..) = gen_opt() {}
2023-07-01 11:08:01 +00:00
| -------^^^^^^^^------------ help: try: `if gen_opt().is_some()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:89:12
|
LL | if let Some(_) = Some(42) {}
2023-07-01 11:08:01 +00:00
| -------^^^^^^^----------- help: try: `if Some(42).is_some()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:91:12
|
LL | if let None = None::<()> {}
2023-07-01 11:08:01 +00:00
| -------^^^^------------- help: try: `if None::<()>.is_none()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:93:15
|
LL | while let Some(_) = Some(42) {}
2023-07-01 11:08:01 +00:00
| ----------^^^^^^^----------- help: try: `while Some(42).is_some()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:95:15
|
LL | while let None = None::<()> {}
2023-07-01 11:08:01 +00:00
| ----------^^^^------------- help: try: `while None::<()>.is_none()`
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:97:5
|
LL | / match Some(42) {
LL | | Some(_) => true,
LL | | None => false,
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `Some(42).is_some()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:102:5
|
LL | / match None::<()> {
LL | | Some(_) => false,
LL | | None => true,
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `None::<()>.is_none()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:110:12
|
LL | if let None = *(&None::<()>) {}
2023-07-01 11:08:01 +00:00
| -------^^^^----------------- help: try: `if (&None::<()>).is_none()`
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:111:12
|
LL | if let None = *&None::<()> {}
2023-07-01 11:08:01 +00:00
| -------^^^^--------------- help: try: `if (&None::<()>).is_none()`
2023-05-05 19:33:16 +00:00
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:117:5
2023-05-05 19:33:16 +00:00
|
2023-05-11 05:20:02 +00:00
LL | / match x {
2023-05-05 19:33:16 +00:00
LL | | Some(_) => true,
LL | | _ => false,
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `x.is_some()`
2023-05-05 19:33:16 +00:00
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:122:5
2023-05-05 19:33:16 +00:00
|
2023-05-11 05:20:02 +00:00
LL | / match x {
2023-05-05 19:33:16 +00:00
LL | | None => true,
LL | | _ => false,
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `x.is_none()`
2023-05-05 19:33:16 +00:00
2023-05-15 17:43:22 +00:00
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:127:5
2023-05-05 19:33:16 +00:00
|
2023-05-15 17:43:22 +00:00
LL | / match x {
LL | | Some(_) => false,
LL | | _ => true,
2023-05-05 19:33:16 +00:00
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `x.is_none()`
2023-05-05 19:33:16 +00:00
2023-05-15 17:43:22 +00:00
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:132:5
2023-05-05 19:33:16 +00:00
|
2023-05-15 17:43:22 +00:00
LL | / match x {
LL | | None => false,
LL | | _ => true,
2023-05-05 19:33:16 +00:00
LL | | };
2023-07-01 11:08:01 +00:00
| |_____^ help: try: `x.is_some()`
2023-05-05 19:33:16 +00:00
2023-05-26 04:16:39 +00:00
error: redundant pattern matching, consider using `is_some()`
--> $DIR/redundant_pattern_matching_option.rs:147:13
2023-05-26 04:16:39 +00:00
|
LL | let _ = matches!(x, Some(_));
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^ help: try: `x.is_some()`
2023-05-26 04:16:39 +00:00
error: redundant pattern matching, consider using `is_none()`
--> $DIR/redundant_pattern_matching_option.rs:149:13
2023-05-26 04:16:39 +00:00
|
LL | let _ = matches!(x, None);
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^ help: try: `x.is_none()`
2023-05-26 04:16:39 +00:00
error: aborting due to 28 previous errors