2020-11-17 11:44:21 +01:00
|
|
|
error: generic parameters may not be used in const operations
|
|
|
|
--> $DIR/associated-item-duplicate-bounds.rs:7:18
|
2020-02-02 17:55:11 +09:00
|
|
|
|
|
|
|
|
LL | links: [u32; A::LINKS], // Shouldn't suggest bounds already there.
|
2020-11-17 11:44:21 +01:00
|
|
|
| ^^^^^^^^ cannot perform const operation using `A`
|
2020-02-02 17:55:11 +09:00
|
|
|
|
|
2020-11-17 11:44:21 +01:00
|
|
|
= note: type parameters may not be used in const expressions
|
2021-08-27 18:04:57 +02:00
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-02-02 17:55:11 +09:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|