2016-10-23 20:54:31 -05:00
|
|
|
error[E0046]: not all trait items implemented, missing: `Output`
|
|
|
|
--> $DIR/issue-23827.rs:36:1
|
|
|
|
|
|
2017-04-14 18:38:10 -05:00
|
|
|
36 | / impl<C: Component> FnOnce<(C,)> for Prototype {
|
2016-10-23 19:22:06 -05:00
|
|
|
37 | | //~^ ERROR E0046
|
|
|
|
38 | | //~| NOTE missing `Output` in implementation
|
|
|
|
39 | | //~| NOTE `Output` from trait: `type Output;`
|
2017-04-06 14:18:18 -05:00
|
|
|
... |
|
2016-10-23 19:22:06 -05:00
|
|
|
42 | | }
|
|
|
|
43 | | }
|
2017-04-14 18:38:10 -05:00
|
|
|
| |_^ missing `Output` in implementation
|
2016-10-23 20:54:31 -05:00
|
|
|
|
|
|
|
|
= note: `Output` from trait: `type Output;`
|
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2016-10-23 20:54:31 -05:00
|
|
|
|