]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-backtrace-nested.stderr
Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726
[rust.git] / tests / ui / macros / macro-backtrace-nested.stderr
1 error[E0425]: cannot find value `fake` in this scope
2   --> $DIR/macro-backtrace-nested.rs:5:12
3    |
4 LL |     () => (fake)
5    |            ^^^^ not found in this scope
6 ...
7 LL |     1 + call_nested_expr!();
8    |         ------------------- in this macro invocation
9    |
10    = note: this error originates in the macro `nested_expr` which comes from the expansion of the macro `call_nested_expr` (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error[E0425]: cannot find value `fake` in this scope
13   --> $DIR/macro-backtrace-nested.rs:5:12
14    |
15 LL |     () => (fake)
16    |            ^^^^ not found in this scope
17 ...
18 LL |     call_nested_expr_sum!();
19    |     ----------------------- in this macro invocation
20    |
21    = note: this error originates in the macro `nested_expr` which comes from the expansion of the macro `call_nested_expr_sum` (in Nightly builds, run with -Z macro-backtrace for more info)
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0425`.