rust-clippy/tests/ui/should_assert_eq.stderr

48 lines
1.3 KiB
Text
Raw Normal View History

error: use `assert_eq` for better reporting
2017-02-18 08:00:36 +00:00
--> $DIR/should_assert_eq.rs:14:5
|
2017-02-18 08:00:36 +00:00
14 | assert!(1 == 2);
| ^^^^^^^^^^^^^^^^
|
note: lint level defined here
2017-02-18 08:00:36 +00:00
--> $DIR/should_assert_eq.rs:5:9
|
2017-02-18 08:00:36 +00:00
5 | #![deny(should_assert_eq)]
| ^^^^^^^^^^^^^^^^
= note: this error originates in a macro outside of the current crate
error: use `assert_eq` for better reporting
2017-02-18 08:00:36 +00:00
--> $DIR/should_assert_eq.rs:15:5
|
2017-02-18 08:00:36 +00:00
15 | assert!(Debug(1) == Debug(2));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in a macro outside of the current crate
error: use `assert_ne` for better reporting
--> $DIR/should_assert_eq.rs:17:5
|
17 | assert!(Debug(1) != Debug(2));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in a macro outside of the current crate
2017-02-17 10:59:52 +00:00
error: use `assert_eq` for better reporting
--> $DIR/should_assert_eq.rs:24:5
|
24 | assert!(x == y);
| ^^^^^^^^^^^^^^^^
|
= note: this error originates in a macro outside of the current crate
error: use `assert_ne` for better reporting
--> $DIR/should_assert_eq.rs:27:5
2017-02-17 10:59:52 +00:00
|
27 | assert!(x != y);
2017-02-17 10:59:52 +00:00
| ^^^^^^^^^^^^^^^^
|
= note: this error originates in a macro outside of the current crate
error: aborting due to 5 previous errors