32 lines
850 B
Plaintext
32 lines
850 B
Plaintext
error: use `assert_eq` for better reporting
|
|
--> $DIR/should_assert_eq.rs:14:5
|
|
|
|
|
14 | assert!(1 == 2);
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/should_assert_eq.rs:5:9
|
|
|
|
|
5 | #![deny(should_assert_eq)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
error: use `assert_eq` for better reporting
|
|
--> $DIR/should_assert_eq.rs:15:5
|
|
|
|
|
15 | assert!(Debug(1) == Debug(2));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
error: use `assert_eq` for better reporting
|
|
--> $DIR/should_assert_eq.rs:22:5
|
|
|
|
|
22 | assert!(x == y);
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
error: aborting due to 3 previous errors
|
|
|