2023-04-22 14:29:34 +00:00
|
|
|
error: unexpected end of macro invocation
|
2023-12-05 22:15:26 +00:00
|
|
|
--> $DIR/offset-of-arg-count.rs:4:34
|
2022-09-11 07:37:49 +00:00
|
|
|
|
|
|
|
|
LL | offset_of!(NotEnoughArguments);
|
2023-04-22 14:29:34 +00:00
|
|
|
| ^ missing tokens in macro arguments
|
|
|
|
|
|
|
|
|
note: while trying to match `,`
|
|
|
|
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
|
2022-09-11 07:37:49 +00:00
|
|
|
|
2023-04-22 14:29:34 +00:00
|
|
|
error: unexpected end of macro invocation
|
2023-12-05 22:15:26 +00:00
|
|
|
--> $DIR/offset-of-arg-count.rs:5:45
|
2022-09-11 07:37:49 +00:00
|
|
|
|
|
|
|
|
LL | offset_of!(NotEnoughArgumentsWithAComma, );
|
2023-04-22 14:29:34 +00:00
|
|
|
| ^ missing tokens in macro arguments
|
|
|
|
|
|
2024-01-02 22:12:35 +00:00
|
|
|
note: while trying to match meta-variable `$fields:expr`
|
2023-04-22 14:29:34 +00:00
|
|
|
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
|
2022-09-11 07:37:49 +00:00
|
|
|
|
2024-06-25 02:52:15 +00:00
|
|
|
error: no rules expected `too`
|
2023-12-05 22:15:26 +00:00
|
|
|
--> $DIR/offset-of-arg-count.rs:6:34
|
2022-09-11 07:37:49 +00:00
|
|
|
|
|
|
|
|
LL | offset_of!(Container, field, too many arguments);
|
2023-04-22 14:29:34 +00:00
|
|
|
| ^^^ no rules expected this token in macro call
|
|
|
|
|
|
|
|
|
= note: while trying to match sequence end
|
|
|
|
|
2024-01-02 22:12:35 +00:00
|
|
|
error: unexpected token: `)`
|
2023-12-05 22:15:26 +00:00
|
|
|
--> $DIR/offset-of-arg-count.rs:9:21
|
2023-04-22 14:29:34 +00:00
|
|
|
|
|
|
|
|
LL | offset_of!(S, f.);
|
2024-01-02 22:12:35 +00:00
|
|
|
| ^
|
2023-04-22 14:29:34 +00:00
|
|
|
|
2024-01-02 22:12:35 +00:00
|
|
|
error: unexpected token: `,`
|
2023-12-05 22:15:26 +00:00
|
|
|
--> $DIR/offset-of-arg-count.rs:10:21
|
2023-04-22 14:29:34 +00:00
|
|
|
|
|
|
|
|
LL | offset_of!(S, f.,);
|
2024-01-02 22:12:35 +00:00
|
|
|
| ^
|
2023-04-22 14:29:34 +00:00
|
|
|
|
2024-01-02 22:12:35 +00:00
|
|
|
error: offset_of expects dot-separated field and variant names
|
2023-12-05 22:15:26 +00:00
|
|
|
--> $DIR/offset-of-arg-count.rs:11:19
|
2023-04-22 14:29:34 +00:00
|
|
|
|
|
|
|
|
LL | offset_of!(S, f..);
|
2024-01-02 22:12:35 +00:00
|
|
|
| ^^^
|
2023-04-22 14:29:34 +00:00
|
|
|
|
2024-01-02 22:12:35 +00:00
|
|
|
error: offset_of expects dot-separated field and variant names
|
2023-12-05 22:15:26 +00:00
|
|
|
--> $DIR/offset-of-arg-count.rs:12:19
|
2023-04-22 14:29:34 +00:00
|
|
|
|
|
|
|
|
LL | offset_of!(S, f..,);
|
2024-01-02 22:12:35 +00:00
|
|
|
| ^^^
|
2022-09-11 07:37:49 +00:00
|
|
|
|
2023-04-22 14:29:34 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2022-09-11 07:37:49 +00:00
|
|
|
|