rust/src/test/ui/const-generics/generic_const_exprs/closures.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
495 B
Plaintext
Raw Normal View History

error: overly complex generic constant
--> $DIR/closures.rs:3:35
|
LL | fn test<const N: usize>() -> [u8; N + (|| 42)()] {}
2020-09-21 16:25:52 -05:00
| ^^^^-------^^
| |
2021-12-05 04:47:07 -06:00
| borrowing is not supported in generic constants
|
= help: consider moving this anonymous constant into a `const` function
= note: this operation may be supported in the future
error: aborting due to previous error