* On suggestions that include deletions, use a diff inspired output format * When suggesting addition, use `+` as underline * Color highlight modified span
13 lines
369 B
Text
13 lines
369 B
Text
error: expressions must be enclosed in braces to be used as const generic arguments
|
|
--> $DIR/const-expression-parameter.rs:15:20
|
|
|
|
|
LL | i32_identity::<1 + 2>();
|
|
| ^^^^^
|
|
|
|
|
help: enclose the `const` expression in braces
|
|
|
|
|
LL | i32_identity::<{ 1 + 2 }>();
|
|
| + +
|
|
|
|
error: aborting due to previous error
|
|
|