2020-10-03 13:30:32 -05:00
|
|
|
error: expressions must be enclosed in braces to be used as const generic arguments
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/const-expression-parameter.rs:10:20
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
|
|
|
LL | i32_identity::<1 + 2>();
|
2020-10-03 13:30:32 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: enclose the `const` expression in braces
|
|
|
|
|
|
|
|
|
LL | i32_identity::<{ 1 + 2 }>();
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2020-08-09 01:19:57 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-08-09 01:19:57 -05:00
|
|
|
|