Files
rust/tests/ui/macros/macro-invocation-span-error-7970.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
482 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error: unexpected end of macro invocation
2025-07-13 16:56:31 -04:00
--> $DIR/macro-invocation-span-error-7970.rs:9:5
2018-07-15 14:11:54 -07:00
|
LL | macro_rules! one_arg_macro {
| -------------------------- when calling this macro
...
LL | one_arg_macro!();
2021-10-14 13:28:28 -05:00
| ^^^^^^^^^^^^^^^^ missing tokens in macro arguments
|
note: while trying to match meta-variable `$fmt:expr`
2025-07-13 16:56:31 -04:00
--> $DIR/macro-invocation-span-error-7970.rs:3:6
|
2025-07-13 16:56:31 -04:00
LL | ($fmt:expr) => {
| ^^^^^^^^^
2018-07-15 14:11:54 -07:00
error: aborting due to 1 previous error
2018-07-15 14:11:54 -07:00