]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/type/type-params-in-different-spaces-3.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / type / type-params-in-different-spaces-3.stderr
index 4e8134da2ddf4132a3557f9a7a5ade57c1898162..c538d67316c6a8ec7ad7279363d0e573362e65b4 100644 (file)
@@ -1,13 +1,19 @@
 error[E0308]: mismatched types
   --> $DIR/type-params-in-different-spaces-3.rs:3:9
    |
+LL | trait Tr : Sized {
+   | ---------------- expected type parameter
 LL |     fn test<X>(u: X) -> Self {
-   |                         ---- expected `Self` because of return type
+   |             -           ---- expected `Self` because of return type
+   |             |
+   |             found type parameter
 LL |         u
-   |         ^ expected Self, found type parameter
+   |         ^ expected type parameter `Self`, found type parameter `X`
    |
-   = note: expected type `Self`
-              found type `X`
+   = note: expected type parameter `Self`
+              found type parameter `X`
+   = note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound
+   = note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
 
 error: aborting due to previous error