mirror of https://github.com/rust-lang/rust
22 lines
877 B
Plaintext
22 lines
877 B
Plaintext
error[E0284]: type annotations needed: cannot normalize `process<T>::{constant#0}`
|
|
--> $DIR/const-trait-bounds.rs:12:35
|
|
|
|
|
LL | fn process<T: const Trait>(input: [(); T::make(2)]) -> [(); T::make(2)] {
|
|
| ^^^^^^^^^^^^^^^^ cannot normalize `process<T>::{constant#0}`
|
|
|
|
error[E0284]: type annotations needed: cannot normalize `Struct<T, P>::field::{constant#0}`
|
|
--> $DIR/const-trait-bounds.rs:20:12
|
|
|
|
|
LL | field: [u32; T::make(P)],
|
|
| ^^^^^^^^^^^^^^^^^ cannot normalize `Struct<T, P>::field::{constant#0}`
|
|
|
|
error[E0284]: type annotations needed: cannot normalize `process<T>::{constant#1}`
|
|
--> $DIR/const-trait-bounds.rs:13:5
|
|
|
|
|
LL | input
|
|
| ^^^^^ cannot normalize `process<T>::{constant#1}`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0284`.
|