mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
96 lines
3 KiB
Text
96 lines
3 KiB
Text
error: identical args used in this `assert_eq!` macro call
|
|
--> $DIR/eq_op_macros.rs:8:20
|
|
|
|
|
LL | assert_eq!(a, a);
|
|
| ^^^^
|
|
...
|
|
LL | assert_in_macro_def!();
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
= note: `-D clippy::eq-op` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::eq_op)]`
|
|
= note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: identical args used in this `assert_ne!` macro call
|
|
--> $DIR/eq_op_macros.rs:9:20
|
|
|
|
|
LL | assert_ne!(a, a);
|
|
| ^^^^
|
|
...
|
|
LL | assert_in_macro_def!();
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: identical args used in this `debug_assert_eq!` macro call
|
|
--> $DIR/eq_op_macros.rs:10:26
|
|
|
|
|
LL | debug_assert_eq!(a, a);
|
|
| ^^^^
|
|
...
|
|
LL | assert_in_macro_def!();
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: identical args used in this `debug_assert_ne!` macro call
|
|
--> $DIR/eq_op_macros.rs:11:26
|
|
|
|
|
LL | debug_assert_ne!(a, a);
|
|
| ^^^^
|
|
...
|
|
LL | assert_in_macro_def!();
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: identical args used in this `assert_eq!` macro call
|
|
--> $DIR/eq_op_macros.rs:23:16
|
|
|
|
|
LL | assert_eq!(a, a);
|
|
| ^^^^
|
|
|
|
error: identical args used in this `assert_eq!` macro call
|
|
--> $DIR/eq_op_macros.rs:25:16
|
|
|
|
|
LL | assert_eq!(a + 1, a + 1);
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: identical args used in this `assert_ne!` macro call
|
|
--> $DIR/eq_op_macros.rs:33:16
|
|
|
|
|
LL | assert_ne!(a, a);
|
|
| ^^^^
|
|
|
|
error: identical args used in this `assert_ne!` macro call
|
|
--> $DIR/eq_op_macros.rs:35:16
|
|
|
|
|
LL | assert_ne!(a + 1, a + 1);
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: identical args used in this `debug_assert_eq!` macro call
|
|
--> $DIR/eq_op_macros.rs:43:22
|
|
|
|
|
LL | debug_assert_eq!(a, a);
|
|
| ^^^^
|
|
|
|
error: identical args used in this `debug_assert_eq!` macro call
|
|
--> $DIR/eq_op_macros.rs:45:22
|
|
|
|
|
LL | debug_assert_eq!(a + 1, a + 1);
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: identical args used in this `debug_assert_ne!` macro call
|
|
--> $DIR/eq_op_macros.rs:53:22
|
|
|
|
|
LL | debug_assert_ne!(a, a);
|
|
| ^^^^
|
|
|
|
error: identical args used in this `debug_assert_ne!` macro call
|
|
--> $DIR/eq_op_macros.rs:55:22
|
|
|
|
|
LL | debug_assert_ne!(a + 1, a + 1);
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: aborting due to 12 previous errors
|
|
|