]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/associated-types/point-at-type-on-obligation-failure-2.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / associated-types / point-at-type-on-obligation-failure-2.stderr
index b23030d7cb52b37b59bbb60e412328ab5cd6e736..f9406834ad7077c9a432354d29c1ff1cc17c9d3a 100644 (file)
@@ -1,35 +1,44 @@
 error[E0277]: the trait bound `bool: Bar` is not satisfied
   --> $DIR/point-at-type-on-obligation-failure-2.rs:8:5
    |
-LL |     type Assoc: Bar;
-   |                 --- required by this bound in `Foo::Assoc`
-...
 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:5
    |
+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`
+   |                  ^^^ required by this bound in `Baz::Assoc`
 LL | {
 LL |     type Assoc;
    |          ----- required by a bound in this
-...
-LL |     type Assoc = bool;
-   |     ^^^^^^^^^^^^^^^^^^ the trait `Bar` is not implemented for `bool`
 
 error[E0277]: the trait bound `bool: Bar` is not satisfied
   --> $DIR/point-at-type-on-obligation-failure-2.rs:30:5
    |
+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`
+   |                           ^^^ required by this bound in `Bat::Assoc`
 LL | {
 LL |     type Assoc;
    |          ----- required by a bound in this
-...
-LL |     type Assoc = bool;
-   |     ^^^^^^^^^^^^^^^^^^ the trait `Bar` is not implemented for `bool`
 
 error: aborting due to 3 previous errors