41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
436 B
Plaintext
15 lines
436 B
Plaintext
error: the constant `N` is not of type `usize`
|
|
--> $DIR/bad-const-wf-doesnt-specialize.rs:8:29
|
|
|
|
|
LL | impl<const N: i32> Copy for S<N> {}
|
|
| ^^^^ expected `usize`, found `i32`
|
|
|
|
|
note: required by a bound in `S`
|
|
--> $DIR/bad-const-wf-doesnt-specialize.rs:6:10
|
|
|
|
|
LL | struct S<const L: usize>;
|
|
| ^^^^^^^^^^^^^^ required by this bound in `S`
|
|
|
|
error: aborting due to 1 previous error
|
|
|