]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-type-bounds/missing-trait-bound-for-assoc-fails.stderr
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / associated-type-bounds / missing-trait-bound-for-assoc-fails.stderr
1 error[E0405]: cannot find trait `Temp` in this scope
2   --> $DIR/missing-trait-bound-for-assoc-fails.rs:4:14
3    |
4 LL |     M::Item: Temp,
5    |              ^^^^ not found in this scope
6
7 error[E0220]: associated type `Item` not found for `M`
8   --> $DIR/missing-trait-bound-for-assoc-fails.rs:4:8
9    |
10 LL |     M::Item: Temp,
11    |        ^^^^ associated type `Item` not found
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0220, E0405.
16 For more information about an error, try `rustc --explain E0220`.