2020-11-17 03:18:27 -06:00
|
|
|
error: expressions must be enclosed in braces to be used as const generic arguments
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/macro_rules-braces.rs:44:17
|
2020-11-18 06:55:35 -06:00
|
|
|
|
|
|
|
|
LL | let _: baz!(m::P);
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
help: enclose the `const` expression in braces
|
|
|
|
|
|
|
|
|
LL | let _: baz!({ m::P });
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2020-11-18 06:55:35 -06:00
|
|
|
|
|
|
|
error: expressions must be enclosed in braces to be used as const generic arguments
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/macro_rules-braces.rs:64:17
|
2020-11-17 03:18:27 -06:00
|
|
|
|
|
|
|
|
LL | let _: baz!(10 + 7);
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
help: enclose the `const` expression in braces
|
|
|
|
|
|
|
|
|
LL | let _: baz!({ 10 + 7 });
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2020-11-17 03:18:27 -06:00
|
|
|
|
2020-11-10 02:48:04 -06:00
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/macro_rules-braces.rs:32:20
|
2020-11-10 02:48:04 -06: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 11:04:57 -05:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 02:48:04 -06:00
|
|
|
|
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/macro_rules-braces.rs:36:19
|
2020-11-10 02:48:04 -06: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 11:04:57 -05:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 02:48:04 -06:00
|
|
|
|
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/macro_rules-braces.rs:41:20
|
2020-11-10 02:48:04 -06: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 11:04:57 -05:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 02:48:04 -06:00
|
|
|
|
|
|
|
error: generic parameters may not be used in const operations
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/macro_rules-braces.rs:46:19
|
2020-11-10 02:48:04 -06: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 11:04:57 -05:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-11-10 02:48:04 -06:00
|
|
|
|
2020-11-18 06:55:35 -06:00
|
|
|
error: aborting due to 6 previous errors
|
2020-11-10 02:48:04 -06:00
|
|
|
|