2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `fake` in this scope
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macro-backtrace-nested.rs:5:12
|
2016-08-17 07:20:04 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | () => (fake)
|
2017-01-12 01:18:08 +03:00
|
|
|
| ^^^^ not found in this scope
|
2016-08-17 07:20:04 -07:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | 1 + call_nested_expr!();
|
2016-08-17 07:20:04 -07:00
|
|
|
| ------------------- in this macro invocation
|
2019-12-16 15:56:47 +02:00
|
|
|
|
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `nested_expr` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2016-08-17 07:20:04 -07:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `fake` in this scope
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macro-backtrace-nested.rs:5:12
|
2016-08-17 07:20:04 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | () => (fake)
|
2017-01-12 01:18:08 +03:00
|
|
|
| ^^^^ not found in this scope
|
2016-08-17 07:20:04 -07:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | call_nested_expr_sum!();
|
2016-08-17 07:20:04 -07:00
|
|
|
| ------------------------ in this macro invocation
|
2019-12-16 15:56:47 +02:00
|
|
|
|
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `nested_expr` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2016-08-17 07:20:04 -07:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to 2 previous errors
|
2016-08-17 07:20:04 -07:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|