@@ -6,48 +6,30 @@ LL | trace_macros!(); //~ ERROR `trace_macros` is not stable
6
6
|
7
7
= help: add #![feature(trace_macros)] to the crate attributes to enable
8
8
9
- error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
10
- --> $DIR/trace_macros-gate.rs:15:5
11
- |
12
- LL | trace_macros!(1); //~ ERROR `trace_macros` is not stable
13
- | ^^^^^^^^^^^^^^^^^
9
+ error: trace_macros! accepts only `true` or `false`
10
+ --> $DIR/trace_macros-gate.rs:14:5
14
11
|
15
- = help: add #![feature(trace_macros)] to the crate attributes to enable
12
+ LL | trace_macros!(); //~ ERROR `trace_macros` is not stable
13
+ | ^^^^^^^^^^^^^^^^
16
14
17
15
error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
18
16
--> $DIR/trace_macros-gate.rs:16:5
19
17
|
20
- LL | trace_macros!(ident ); //~ ERROR `trace_macros` is not stable
21
- | ^^^^^^^^^^^^^^^^^^^^^
18
+ LL | trace_macros!(true ); //~ ERROR `trace_macros` is not stable
19
+ | ^^^^^^^^^^^^^^^^^^^^
22
20
|
23
21
= help: add #![feature(trace_macros)] to the crate attributes to enable
24
22
25
23
error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
26
24
--> $DIR/trace_macros-gate.rs:17:5
27
25
|
28
- LL | trace_macros!(for); //~ ERROR `trace_macros` is not stable
29
- | ^^^^^^^^^^^^^^^^^^^
30
- |
31
- = help: add #![feature(trace_macros)] to the crate attributes to enable
32
-
33
- error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
34
- --> $DIR/trace_macros-gate.rs:18:5
35
- |
36
- LL | trace_macros!(true,); //~ ERROR `trace_macros` is not stable
26
+ LL | trace_macros!(false); //~ ERROR `trace_macros` is not stable
37
27
| ^^^^^^^^^^^^^^^^^^^^^
38
28
|
39
29
= help: add #![feature(trace_macros)] to the crate attributes to enable
40
30
41
31
error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
42
- --> $DIR/trace_macros-gate.rs:19:5
43
- |
44
- LL | trace_macros!(false 1); //~ ERROR `trace_macros` is not stable
45
- | ^^^^^^^^^^^^^^^^^^^^^^^
46
- |
47
- = help: add #![feature(trace_macros)] to the crate attributes to enable
48
-
49
- error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
50
- --> $DIR/trace_macros-gate.rs:26:26
32
+ --> $DIR/trace_macros-gate.rs:20:26
51
33
|
52
34
LL | ($x: ident) => { trace_macros!($x) } //~ ERROR `trace_macros` is not stable
53
35
| ^^^^^^^^^^^^^^^^^
@@ -57,6 +39,6 @@ LL | expando!(true);
57
39
|
58
40
= help: add #![feature(trace_macros)] to the crate attributes to enable
59
41
60
- error: aborting due to 7 previous errors
42
+ error: aborting due to 5 previous errors
61
43
62
44
For more information about this error, try `rustc --explain E0658`.
0 commit comments