Files
rust/src/test/ui/issues/issue-22434.stderr

13 lines
403 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0191]: the value of the associated type `A` (from the trait `Foo`) must be specified
2018-12-25 08:56:47 -07:00
--> $DIR/issue-22434.rs:5:19
2018-07-15 14:11:54 -07:00
|
LL | type A;
| ------- `A` defined here
...
2019-05-28 14:46:13 -04:00
LL | type I<'a> = &'a (dyn Foo + 'a);
| ^^^^^^^^^^^^ associated type `A` must be specified
2018-07-15 14:11:54 -07:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0191`.