rust/src/test/ui/macros/macro-backtrace-nested.stderr

22 lines
695 B
Plaintext
Raw Normal View History

error[E0425]: cannot find value `fake` in this scope
--> $DIR/macro-backtrace-nested.rs:15:12
|
2017-11-20 06:13:27 -06:00
15 | () => (fake) //~ ERROR cannot find
| ^^^^ not found in this scope
...
2017-11-20 06:13:27 -06:00
28 | 1 + call_nested_expr!();
| ------------------- in this macro invocation
error[E0425]: cannot find value `fake` in this scope
--> $DIR/macro-backtrace-nested.rs:15:12
|
2017-11-20 06:13:27 -06:00
15 | () => (fake) //~ ERROR cannot find
| ^^^^ not found in this scope
...
2017-11-20 06:13:27 -06:00
29 | call_nested_expr_sum!();
| ------------------------ in this macro invocation
error: aborting due to 2 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0425"