mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
e63664773c
* Move dyn-drop to dyn-keyword * Reorganize `tests/ui/empty` into specific dirs remove tests/ui/empty/empty-linkname.rs duplicate of tests/ui/error-codes/E0454.rs * Move `missing-trait-bounds` to `trait-bound/missing-trait-bounds` * bless traits/missing-trait-bounds tests * Move `recursion_limit` to `recursion/recursion_limit` * Move `version` to `compile-flags`
18 lines
482 B
Plaintext
18 lines
482 B
Plaintext
error: unexpected end of macro invocation
|
|
--> $DIR/empty-comment.rs:10:5
|
|
|
|
|
LL | macro_rules! one_arg_macro {
|
|
| -------------------------- when calling this macro
|
|
...
|
|
LL | one_arg_macro!(/**/);
|
|
| ^^^^^^^^^^^^^^^^^^^^ missing tokens in macro arguments
|
|
|
|
|
note: while trying to match meta-variable `$fmt:expr`
|
|
--> $DIR/empty-comment.rs:6:6
|
|
|
|
|
LL | ($fmt:expr) => (print!(concat!($fmt, "\n")));
|
|
| ^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|