]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/associated-types/hr-associated-type-bound-param-3.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / associated-types / hr-associated-type-bound-param-3.stderr
index ff56f60e4c9e57c8caa844a9f55f420bd5317e73..48c4d77dcc7d408e0d4178e79466e097f67c4aa6 100644 (file)
@@ -1,5 +1,5 @@
-error[E0277]: the trait bound `for<'b> <(T,) as X<'b, (T,)>>::U: std::clone::Clone` is not satisfied
-  --> $DIR/hr-associated-type-bound-param-3.rs:15:14
+error[E0277]: the trait bound `for<'b> <(T,) as X<'b, (T,)>>::U: Clone` is not satisfied
+  --> $DIR/hr-associated-type-bound-param-3.rs:13:14
    |
 LL | trait X<'a, T>
    |       - required by a bound in this
@@ -8,11 +8,11 @@ LL |     for<'b> <T as X<'b, T>>::U: Clone,
    |                                 ----- required by this bound in `X`
 ...
 LL |     type U = str;
-   |              ^^^ the trait `for<'b> std::clone::Clone` is not implemented for `<(T,) as X<'b, (T,)>>::U`
+   |              ^^^ the trait `for<'b> Clone` is not implemented for `<(T,) as X<'b, (T,)>>::U`
    |
    = help: the following implementations were found:
-             <&T as std::clone::Clone>
-             <&mut T as std::clone::Clone>
+             <&T as Clone>
+             <&mut T as Clone>
 
 error: aborting due to previous error