summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-types/point-at-type-on-obligation-failure-2.stderr
blob: 2e7a1dd2a3186752e07cb6c2d6cf5e996332666d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
error[E0277]: the trait bound `bool: Bar` is not satisfied
  --> $DIR/point-at-type-on-obligation-failure-2.rs:8:18
   |
LL |     type Assoc = bool;
   |                  ^^^^ the trait `Bar` is not implemented for `bool`
   |
note: required by a bound in `Foo::Assoc`
  --> $DIR/point-at-type-on-obligation-failure-2.rs:4:17
   |
LL |     type Assoc: Bar;
   |                 ^^^ required by this bound in `Foo::Assoc`

error[E0277]: the trait bound `bool: Bar` is not satisfied
  --> $DIR/point-at-type-on-obligation-failure-2.rs:19:18
   |
LL |     type Assoc = bool;
   |                  ^^^^ the trait `Bar` is not implemented for `bool`
   |
note: required by a bound in `Baz::Assoc`
  --> $DIR/point-at-type-on-obligation-failure-2.rs:13:18
   |
LL |     Self::Assoc: Bar,
   |                  ^^^ required by this bound in `Baz::Assoc`
LL | {
LL |     type Assoc;
   |          ----- required by a bound in this

error[E0277]: the trait bound `bool: Bar` is not satisfied
  --> $DIR/point-at-type-on-obligation-failure-2.rs:30:18
   |
LL |     type Assoc = bool;
   |                  ^^^^ the trait `Bar` is not implemented for `bool`
   |
note: required by a bound in `Bat::Assoc`
  --> $DIR/point-at-type-on-obligation-failure-2.rs:24:27
   |
LL |     <Self as Bat>::Assoc: Bar,
   |                           ^^^ required by this bound in `Bat::Assoc`
LL | {
LL |     type Assoc;
   |          ----- required by a bound in this

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0277`.