mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 16:26:29 +00:00
14 lines
369 B
Plaintext
14 lines
369 B
Plaintext
error: expressions must be enclosed in braces to be used as const generic arguments
|
|
--> $DIR/const-expression-parameter.rs:10:20
|
|
|
|
|
LL | i32_identity::<1 + 2>();
|
|
| ^^^^^
|
|
|
|
|
help: enclose the `const` expression in braces
|
|
|
|
|
LL | i32_identity::<{ 1 + 2 }>();
|
|
| + +
|
|
|
|
error: aborting due to previous error
|
|
|