2018-08-08 07:28:26 -05:00
|
|
|
error[E0046]: not all trait items implemented, missing: `foo_two`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/specialization-trait-item-not-implemented.rs:18:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn foo_two(&self) -> &'static str;
|
|
|
|
| ---------------------------------- `foo_two` from trait
|
|
|
|
...
|
|
|
|
LL | impl Foo for MyStruct {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ missing `foo_two` in implementation
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0046`.
|