]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trace_macros-format.stderr
Rollup merge of #89468 - FabianWolff:issue-89358, r=jackh726
[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!();
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);
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);
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);
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,);
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);
35    |     ^^^^^^^^^^^^^^^^^^^^^^
36
37 error: aborting due to 6 previous errors
38