]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/eq_op_macros.stderr
Auto merge of #97191 - wesleywiser:main_thread_name, r=ChrisDenton
[rust.git] / src / tools / clippy / tests / ui / eq_op_macros.stderr
1 error: identical args used in this `assert_eq!` macro call
2   --> $DIR/eq_op_macros.rs:7:20
3    |
4 LL |         assert_eq!(a, a);
5    |                    ^^^^
6 ...
7 LL |     assert_in_macro_def!();
8    |     ---------------------- in this macro invocation
9    |
10    = note: `-D clippy::eq-op` implied by `-D warnings`
11    = note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
12
13 error: identical args used in this `assert_ne!` macro call
14   --> $DIR/eq_op_macros.rs:8:20
15    |
16 LL |         assert_ne!(a, a);
17    |                    ^^^^
18 ...
19 LL |     assert_in_macro_def!();
20    |     ---------------------- in this macro invocation
21    |
22    = note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
23
24 error: identical args used in this `debug_assert_eq!` macro call
25   --> $DIR/eq_op_macros.rs:9:26
26    |
27 LL |         debug_assert_eq!(a, a);
28    |                          ^^^^
29 ...
30 LL |     assert_in_macro_def!();
31    |     ---------------------- in this macro invocation
32    |
33    = note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
34
35 error: identical args used in this `debug_assert_ne!` macro call
36   --> $DIR/eq_op_macros.rs:10:26
37    |
38 LL |         debug_assert_ne!(a, a);
39    |                          ^^^^
40 ...
41 LL |     assert_in_macro_def!();
42    |     ---------------------- in this macro invocation
43    |
44    = note: this error originates in the macro `assert_in_macro_def` (in Nightly builds, run with -Z macro-backtrace for more info)
45
46 error: identical args used in this `assert_eq!` macro call
47   --> $DIR/eq_op_macros.rs:22:16
48    |
49 LL |     assert_eq!(a, a);
50    |                ^^^^
51
52 error: identical args used in this `assert_eq!` macro call
53   --> $DIR/eq_op_macros.rs:23:16
54    |
55 LL |     assert_eq!(a + 1, a + 1);
56    |                ^^^^^^^^^^^^
57
58 error: identical args used in this `assert_ne!` macro call
59   --> $DIR/eq_op_macros.rs:30:16
60    |
61 LL |     assert_ne!(a, a);
62    |                ^^^^
63
64 error: identical args used in this `assert_ne!` macro call
65   --> $DIR/eq_op_macros.rs:31:16
66    |
67 LL |     assert_ne!(a + 1, a + 1);
68    |                ^^^^^^^^^^^^
69
70 error: identical args used in this `debug_assert_eq!` macro call
71   --> $DIR/eq_op_macros.rs:38:22
72    |
73 LL |     debug_assert_eq!(a, a);
74    |                      ^^^^
75
76 error: identical args used in this `debug_assert_eq!` macro call
77   --> $DIR/eq_op_macros.rs:39:22
78    |
79 LL |     debug_assert_eq!(a + 1, a + 1);
80    |                      ^^^^^^^^^^^^
81
82 error: identical args used in this `debug_assert_ne!` macro call
83   --> $DIR/eq_op_macros.rs:46:22
84    |
85 LL |     debug_assert_ne!(a, a);
86    |                      ^^^^
87
88 error: identical args used in this `debug_assert_ne!` macro call
89   --> $DIR/eq_op_macros.rs:47:22
90    |
91 LL |     debug_assert_ne!(a + 1, a + 1);
92    |                      ^^^^^^^^^^^^
93
94 error: aborting due to 12 previous errors
95