2017-02-17 02:32:51 -06:00
|
|
|
error: use `assert_eq` for better reporting
|
2017-05-17 10:51:35 -05:00
|
|
|
--> should_assert_eq.rs:14:5
|
2017-02-17 02:32:51 -06:00
|
|
|
|
|
2017-02-18 02:00:36 -06:00
|
|
|
14 | assert!(1 == 2);
|
2017-02-17 02:32:51 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D should-assert-eq` implied by `-D warnings`
|
2017-02-17 02:32:51 -06:00
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
|
|
|
error: use `assert_eq` for better reporting
|
2017-05-17 10:51:35 -05:00
|
|
|
--> should_assert_eq.rs:15:5
|
2017-02-17 02:32:51 -06:00
|
|
|
|
|
2017-02-18 02:00:36 -06:00
|
|
|
15 | assert!(Debug(1) == Debug(2));
|
2017-02-17 02:32:51 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
2017-02-22 01:47:18 -06:00
|
|
|
error: use `assert_ne` for better reporting
|
2017-05-17 10:51:35 -05:00
|
|
|
--> should_assert_eq.rs:17:5
|
2017-02-22 01:47:18 -06:00
|
|
|
|
|
|
|
|
17 | assert!(Debug(1) != Debug(2));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
2017-05-15 15:49:20 -05:00
|
|
|
error: use `debug_assert_eq` for better reporting
|
2017-05-17 10:51:35 -05:00
|
|
|
--> should_assert_eq.rs:22:5
|
2017-05-15 15:49:20 -05:00
|
|
|
|
|
|
|
|
22 | debug_assert!(4 == 5);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
|
|
|
error: use `debug_assert_ne` for better reporting
|
2017-05-17 10:51:35 -05:00
|
|
|
--> should_assert_eq.rs:23:5
|
2017-05-15 15:49:20 -05:00
|
|
|
|
|
|
|
|
23 | debug_assert!(4 != 6);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
2017-02-17 04:59:52 -06:00
|
|
|
error: use `assert_eq` for better reporting
|
2017-05-17 10:51:35 -05:00
|
|
|
--> should_assert_eq.rs:27:5
|
2017-02-22 01:47:18 -06:00
|
|
|
|
|
2017-05-15 15:49:20 -05:00
|
|
|
27 | assert!(x == y);
|
2017-02-22 01:47:18 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
|
|
|
error: use `assert_ne` for better reporting
|
2017-05-17 10:51:35 -05:00
|
|
|
--> should_assert_eq.rs:30:5
|
2017-02-17 04:59:52 -06:00
|
|
|
|
|
2017-05-15 15:49:20 -05:00
|
|
|
30 | assert!(x != y);
|
2017-02-17 04:59:52 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
2017-07-02 23:37:30 -05:00
|
|
|
error: aborting due to 7 previous errors
|
2017-02-17 02:32:51 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|