blob: 70b017b782f2d5d019db3cb5eafaf81f826d5434 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0220]: associated type `F` not found for `Trait`
--> $DIR/E0220.rs:15:18
|
15 | type Foo = Trait<F=i32>; //~ ERROR E0220
| ^^^^^ associated type `F` not found
error[E0191]: the value of the associated type `Bar` (from the trait `Trait`) must be specified
--> $DIR/E0220.rs:15:12
|
15 | type Foo = Trait<F=i32>; //~ ERROR E0220
| ^^^^^^^^^^^^ missing associated type `Bar` value
error: aborting due to 2 previous errors
|