]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trace_macros-format.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / trace_macros-format.stderr
1 error: trace_macros! accepts only `true` or `false`
2   --> $DIR/trace_macros-format.rs:4:5
3    |
4 LL |     trace_macros!(); //~ ERROR trace_macros! accepts only `true` or `false`
5    |     ^^^^^^^^^^^^^^^^
6
7 error: trace_macros! accepts only `true` or `false`
8   --> $DIR/trace_macros-format.rs:5:5
9    |
10 LL |     trace_macros!(1); //~ ERROR trace_macros! accepts only `true` or `false`
11    |     ^^^^^^^^^^^^^^^^^
12
13 error: trace_macros! accepts only `true` or `false`
14   --> $DIR/trace_macros-format.rs:6:5
15    |
16 LL |     trace_macros!(ident); //~ ERROR trace_macros! accepts only `true` or `false`
17    |     ^^^^^^^^^^^^^^^^^^^^^
18
19 error: trace_macros! accepts only `true` or `false`
20   --> $DIR/trace_macros-format.rs:7:5
21    |
22 LL |     trace_macros!(for); //~ ERROR trace_macros! accepts only `true` or `false`
23    |     ^^^^^^^^^^^^^^^^^^^
24
25 error: trace_macros! accepts only `true` or `false`
26   --> $DIR/trace_macros-format.rs:8:5
27    |
28 LL |     trace_macros!(true,); //~ ERROR trace_macros! accepts only `true` or `false`
29    |     ^^^^^^^^^^^^^^^^^^^^^
30
31 error: trace_macros! accepts only `true` or `false`
32   --> $DIR/trace_macros-format.rs:9:5
33    |
34 LL |     trace_macros!(false 1); //~ ERROR trace_macros! accepts only `true` or `false`
35    |     ^^^^^^^^^^^^^^^^^^^^^^^
36
37 error: aborting due to 6 previous errors
38