2020-11-17 10:18:27 +01:00
|
|
|
error: expressions must be enclosed in braces to be used as const generic arguments
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/macro_rules-braces.rs:44:17
|
2020-11-18 12:55:35 +00:00
|
|
|
|
|
|
|
|
LL | let _: baz!(m::P);
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
help: enclose the `const` expression in braces
|
|
|
|
|
|
|
|
|
LL | let _: baz!({ m::P });
|
2021-06-21 19:07:19 -07:00
|
|
|
| + +
|
2020-11-18 12:55:35 +00:00
|
|
|
|
|
|
|
error: expressions must be enclosed in braces to be used as const generic arguments
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/macro_rules-braces.rs:64:17
|
2020-11-17 10:18:27 +01:00
|
|
|
|
|
|
|
|
LL | let _: baz!(10 + 7);
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
help: enclose the `const` expression in braces
|
|
|
|
|
|
|
|
|
LL | let _: baz!({ 10 + 7 });
|
2021-06-21 19:07:19 -07:00
|
|
|
| + +
|
2020-11-17 10:18:27 +01:00
|
|
|
|
2020-11-10 09:48:04 +01:00
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/macro_rules-braces.rs:32:20
|
2020-11-10 09:48:04 +01:00
|
|
|
|
|
|
|
|
LL | let _: foo!({{ N }});
|
|
|
|
| ^ cannot perform const operation using `N`
|
|
|
|
|
|
|
|
|
= help: const parameters may only be used as standalone arguments, i.e. `N`
|
2021-08-27 18:04:57 +02:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 09:48:04 +01:00
|
|
|
|
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/macro_rules-braces.rs:36:19
|
2020-11-10 09:48:04 +01:00
|
|
|
|
|
|
|
|
LL | let _: bar!({ N });
|
|
|
|
| ^ cannot perform const operation using `N`
|
|
|
|
|
|
|
|
|
= help: const parameters may only be used as standalone arguments, i.e. `N`
|
2021-08-27 18:04:57 +02:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 09:48:04 +01:00
|
|
|
|
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/macro_rules-braces.rs:41:20
|
2020-11-10 09:48:04 +01:00
|
|
|
|
|
|
|
|
LL | let _: baz!({{ N }});
|
|
|
|
| ^ cannot perform const operation using `N`
|
|
|
|
|
|
|
|
|
= help: const parameters may only be used as standalone arguments, i.e. `N`
|
2021-08-27 18:04:57 +02:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 09:48:04 +01:00
|
|
|
|
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/macro_rules-braces.rs:46:19
|
2020-11-10 09:48:04 +01:00
|
|
|
|
|
|
|
|
LL | let _: biz!({ N });
|
|
|
|
| ^ cannot perform const operation using `N`
|
|
|
|
|
|
|
|
|
= help: const parameters may only be used as standalone arguments, i.e. `N`
|
2021-08-27 18:04:57 +02:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 09:48:04 +01:00
|
|
|
|
2020-11-18 12:55:35 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2020-11-10 09:48:04 +01:00
|
|
|
|