2021-04-22 09:31:13 +00:00
|
|
|
error: used `assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:89:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!("a".is_empty(), false);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::bool-assert-comparison` implied by `-D warnings`
|
2023-01-27 20:09:08 +00:00
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!("a".is_empty(), false);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + assert!(!"a".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:90:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!("".is_empty(), true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!("".is_empty(), true);
|
|
|
|
LL + assert!("".is_empty());
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:91:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!(true, "".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!(true, "".is_empty());
|
|
|
|
LL + assert!("".is_empty());
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: used `assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:96:5
|
2021-09-08 14:31:47 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!(b, true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!(b, true);
|
|
|
|
LL + assert!(b);
|
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: used `assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:99:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_ne!("a".is_empty(), false);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_ne!("a".is_empty(), false);
|
|
|
|
LL + assert!("a".is_empty());
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:100:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_ne!("".is_empty(), true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_ne!("".is_empty(), true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + assert!(!"".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:101:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_ne!(true, "".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_ne!(true, "".is_empty());
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + assert!(!"".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: used `assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:106:5
|
2021-09-08 14:31:47 +00:00
|
|
|
|
|
|
|
|
LL | assert_ne!(b, true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_ne!(b, true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + assert!(!b);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:109:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_eq!("a".is_empty(), false);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!("a".is_empty(), false);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + debug_assert!(!"a".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:110:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_eq!("".is_empty(), true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!("".is_empty(), true);
|
|
|
|
LL + debug_assert!("".is_empty());
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:111:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_eq!(true, "".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!(true, "".is_empty());
|
|
|
|
LL + debug_assert!("".is_empty());
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:116:5
|
2021-09-08 14:31:47 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_eq!(b, true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!(b, true);
|
|
|
|
LL + debug_assert!(b);
|
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: used `debug_assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:119:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_ne!("a".is_empty(), false);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_ne!("a".is_empty(), false);
|
|
|
|
LL + debug_assert!("a".is_empty());
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `debug_assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:120:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_ne!("".is_empty(), true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_ne!("".is_empty(), true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + debug_assert!(!"".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `debug_assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:121:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_ne!(true, "".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_ne!(true, "".is_empty());
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + debug_assert!(!"".is_empty());
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: used `debug_assert_ne!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:126:5
|
2021-09-08 14:31:47 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_ne!(b, true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_ne!(b, true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + debug_assert!(!b);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: used `assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:131:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!("a".is_empty(), false, "tadam {}", 1);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!("a".is_empty(), false, "tadam {}", 1);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + assert!(!"a".is_empty(), "tadam {}", 1);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:132:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!("a".is_empty(), false, "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!("a".is_empty(), false, "tadam {}", true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + assert!(!"a".is_empty(), "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:133:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | assert_eq!(false, "a".is_empty(), "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!(false, "a".is_empty(), "tadam {}", true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + assert!(!"a".is_empty(), "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:138:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_eq!("a".is_empty(), false, "tadam {}", 1);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!("a".is_empty(), false, "tadam {}", 1);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + debug_assert!(!"a".is_empty(), "tadam {}", 1);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:139:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_eq!("a".is_empty(), false, "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!("a".is_empty(), false, "tadam {}", true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + debug_assert!(!"a".is_empty(), "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
2023-01-27 20:09:08 +00:00
|
|
|
--> $DIR/bool_assert_comparison.rs:140:5
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | debug_assert_eq!(false, "a".is_empty(), "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!(false, "a".is_empty(), "tadam {}", true);
|
2023-02-10 13:01:19 +00:00
|
|
|
LL + debug_assert!(!"a".is_empty(), "tadam {}", true);
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: used `assert_eq!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:143:5
|
|
|
|
|
|
|
|
|
LL | assert_eq!(a!(), true);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!(a!(), true);
|
|
|
|
LL + assert!(a!());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `assert_eq!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:144:5
|
|
|
|
|
|
|
|
|
LL | assert_eq!(true, b!());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!(true, b!());
|
|
|
|
LL + assert!(b!());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:148:5
|
|
|
|
|
|
|
|
|
LL | renamed!(b, true);
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - renamed!(b, true);
|
|
|
|
LL + debug_assert!(b);
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
|
2023-02-10 13:01:19 +00:00
|
|
|
error: used `assert_eq!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:162:5
|
|
|
|
|
|
|
|
|
LL | assert_eq!("".is_empty(), true);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!("".is_empty(), true);
|
|
|
|
LL + assert!("".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `assert_ne!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:163:5
|
|
|
|
|
|
|
|
|
LL | assert_ne!("".is_empty(), false);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_ne!("".is_empty(), false);
|
|
|
|
LL + assert!("".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `assert_ne!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:164:5
|
|
|
|
|
|
|
|
|
LL | assert_ne!("requires negation".is_empty(), true);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_ne!("requires negation".is_empty(), true);
|
|
|
|
LL + assert!(!"requires negation".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `assert_eq!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:165:5
|
|
|
|
|
|
|
|
|
LL | assert_eq!("requires negation".is_empty(), false);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `assert!(..)`
|
|
|
|
|
|
|
|
|
LL - assert_eq!("requires negation".is_empty(), false);
|
|
|
|
LL + assert!(!"requires negation".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:167:5
|
|
|
|
|
|
|
|
|
LL | debug_assert_eq!("".is_empty(), true);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!("".is_empty(), true);
|
|
|
|
LL + debug_assert!("".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `debug_assert_ne!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:168:5
|
|
|
|
|
|
|
|
|
LL | debug_assert_ne!("".is_empty(), false);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_ne!("".is_empty(), false);
|
|
|
|
LL + debug_assert!("".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `debug_assert_ne!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:169:5
|
|
|
|
|
|
|
|
|
LL | debug_assert_ne!("requires negation".is_empty(), true);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_ne!("requires negation".is_empty(), true);
|
|
|
|
LL + debug_assert!(!"requires negation".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: used `debug_assert_eq!` with a literal bool
|
|
|
|
--> $DIR/bool_assert_comparison.rs:170:5
|
|
|
|
|
|
|
|
|
LL | debug_assert_eq!("requires negation".is_empty(), false);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: replace it with `debug_assert!(..)`
|
|
|
|
|
|
|
|
|
LL - debug_assert_eq!("requires negation".is_empty(), false);
|
|
|
|
LL + debug_assert!(!"requires negation".is_empty());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 33 previous errors
|
2021-04-22 09:31:13 +00:00
|
|
|
|