2018-07-15 16:11:54 -05:00
|
|
|
error[E0191]: the value of the associated type `A` (from the trait `Foo`) must be specified
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-19482.rs:10:12
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2018-11-08 20:14:41 -06:00
|
|
|
LL | type A;
|
|
|
|
| ------- `A` defined here
|
|
|
|
...
|
2018-07-15 16:11:54 -05:00
|
|
|
LL | fn bar(x: &Foo) {}
|
2018-11-08 23:43:08 -06:00
|
|
|
| ^^^ associated type `A` must be specified
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0191`.
|