]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/associated-types/associated-types-path-2.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / associated-types / associated-types-path-2.stderr
index ec24260ec7548f8c6c9dcc8008578f1d6a8dc049..b2599410f05e45815a83b87b63e45a1c7829fcc2 100644 (file)
@@ -13,7 +13,7 @@ error[E0277]: the trait bound `u32: Foo` is not satisfied
   --> $DIR/associated-types-path-2.rs:29:5
    |
 LL | pub fn f1<T: Foo>(a: T, x: T::A) {}
-   |        --    --- required by this bound in `f1`
+   |              --- required by this bound in `f1`
 ...
 LL |     f1(2u32, 4u32);
    |     ^^ the trait `Foo` is not implemented for `u32`
@@ -28,7 +28,7 @@ error[E0277]: the trait bound `u32: Foo` is not satisfied
   --> $DIR/associated-types-path-2.rs:35:5
    |
 LL | pub fn f1<T: Foo>(a: T, x: T::A) {}
-   |        --    --- required by this bound in `f1`
+   |              --- required by this bound in `f1`
 ...
 LL |     f1(2u32, 4i32);
    |     ^^ the trait `Foo` is not implemented for `u32`