2022-07-15 00:37:32 -05:00
|
|
|
error[E0046]: not all trait items implemented, missing: `N`
|
2022-08-28 01:27:31 -05:00
|
|
|
--> $DIR/issue-98629.rs:8:1
|
2022-07-15 00:37:32 -05:00
|
|
|
|
|
|
|
|
LL | const N: usize;
|
|
|
|
| -------------- `N` from trait
|
|
|
|
...
|
|
|
|
LL | impl const Trait for i32 {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ missing `N` in implementation
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-07-15 00:37:32 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0046`.
|