]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-in-expression-context.stderr
Merge commit '7c21f91b15b7604f818565646b686d90f99d1baf' into clippyup
[rust.git] / src / test / ui / macros / macro-in-expression-context.stderr
1 error: macro expansion ignores token `assert_eq` and any following
2   --> $DIR/macro-in-expression-context.rs:12:9
3    |
4 LL |         assert_eq!("B", "B");
5    |         ^^^^^^^^^
6 ...
7 LL |     foo!()
8    |     ------- help: you might be missing a semicolon here: `;`
9    |     |
10    |     caused by the macro expansion here
11    |
12    = note: the usage of `foo!` is likely invalid in expression context
13
14 warning: trailing semicolon in macro used in expression position
15   --> $DIR/macro-in-expression-context.rs:5:29
16    |
17 LL |         assert_eq!("A", "A");
18    |                             ^
19 ...
20 LL |     foo!()
21    |     ------ in this macro invocation
22    |
23    = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default
24    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
25    = note: for more information, see issue #79813 <https://github.com/rust-lang/rust/issues/79813>
26    = note: macro invocations at the end of a block are treated as expressions
27    = note: to ignore the value produced by the macro, add a semicolon after the invocation of `foo`
28    = note: this warning originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info)
29
30 error: aborting due to previous error; 1 warning emitted
31