rust/src/test/ui/missing/missing-items/m2.stderr

14 lines
558 B
Plaintext
Raw Normal View History

error[E0046]: not all trait items implemented, missing: `CONSTANT`, `Type`, `method`
2017-07-06 13:52:25 -05:00
--> $DIR/m2.rs:19:1
|
2018-02-22 18:42:32 -06:00
LL | impl m1::X for X { //~ ERROR not all trait items implemented
| ^^^^^^^^^^^^^^^^ missing `CONSTANT`, `Type`, `method` in implementation
|
= note: `CONSTANT` from trait: `const CONSTANT: u32;`
= note: `Type` from trait: `type Type;`
= note: `method` from trait: `fn(&Self, std::string::String) -> <Self as m1::X>::Type`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0046`.