]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-eq-3.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / associated-types / associated-types-eq-3.stderr
1 error[E0308]: mismatched types
2   --> $DIR/associated-types-eq-3.rs:23:18
3    |
4 LL |     let _: Bar = x.boo();
5    |                  ^^^^^^^ expected struct `Bar`, found associated type
6    |
7    = note:       expected struct `Bar`
8            found associated type `<I as Foo>::A`
9    = note: consider constraining the associated type `<I as Foo>::A` to `Bar`
10    = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
11
12 error[E0271]: type mismatch resolving `<isize as Foo>::A == Bar`
13   --> $DIR/associated-types-eq-3.rs:38:5
14    |
15 LL | fn foo1<I: Foo<A=Bar>>(x: I) {
16    |    ----        ----- required by this bound in `foo1`
17 ...
18 LL |     foo1(a);
19    |     ^^^^ expected struct `Bar`, found usize
20
21 error[E0271]: type mismatch resolving `<isize as Foo>::A == Bar`
22   --> $DIR/associated-types-eq-3.rs:41:9
23    |
24 LL |     baz(&a);
25    |         ^^ expected struct `Bar`, found usize
26    |
27    = note: required for the cast to the object type `dyn Foo<A = Bar>`
28
29 error: aborting due to 3 previous errors
30
31 Some errors have detailed explanations: E0271, E0308.
32 For more information about an error, try `rustc --explain E0271`.