blob: 489cc14420a4c06b2913c647f727669028266b8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0220]: associated type `A` not found for `T`
--> $DIR/issue-79465.rs:1:20
|
LL | pub fn f1<T>(x: T::A) {}
| ^ associated type `A` not found
error[E0220]: associated type `A` not found for `T`
--> $DIR/issue-79465.rs:1:20
|
LL | pub fn f1<T>(x: T::A) {}
| ^ associated type `A` not found
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0220`.
|