]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0220.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / error-codes / E0220.stderr
1 error[E0220]: associated type `F` not found for `Trait`
2   --> $DIR/E0220.rs:15:18
3    |
4 LL | type Foo = Trait<F=i32>; //~ ERROR E0220
5    |                  ^^^^^ associated type `F` not found
6
7 error[E0191]: the value of the associated type `Bar` (from the trait `Trait`) must be specified
8   --> $DIR/E0220.rs:15:12
9    |
10 LL | type Foo = Trait<F=i32>; //~ ERROR E0220
11    |            ^^^^^^^^^^^^ missing associated type `Bar` value
12
13 error: aborting due to 2 previous errors
14
15 Some errors occurred: E0191, E0220.
16 For more information about an error, try `rustc --explain E0191`.