2016-10-23 20:54:31 -05:00
|
|
|
error[E0046]: not all trait items implemented, missing: `Target`
|
|
|
|
--> $DIR/issue-24356.rs:30:9
|
|
|
|
|
|
2017-04-14 18:38:10 -05:00
|
|
|
30 | / impl Deref for Thing {
|
2016-10-23 19:22:06 -05:00
|
|
|
31 | | //~^ ERROR E0046
|
2017-12-10 14:29:24 -06:00
|
|
|
32 | | fn deref(&self) -> i8 { self.0 }
|
|
|
|
33 | | }
|
2017-04-14 18:38:10 -05:00
|
|
|
| |_________^ missing `Target` in implementation
|
2016-10-23 20:54:31 -05:00
|
|
|
|
|
|
|
|
= note: `Target` from trait: `type Target;`
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2016-10-23 20:54:31 -05:00
|
|
|
|