]> 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 e1b4cbb2ab3f46a2a8c7f4a0644ce77a8052a6b1..c538d67316c6a8ec7ad7279363d0e573362e65b4 100644 (file)
@@ -1,13 +1,19 @@
 error[E0308]: mismatched types
-  --> $DIR/type-params-in-different-spaces-3.rs:13:9
+  --> $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
-LL |         u   //~ ERROR mismatched types
-   |         ^ expected Self, found type parameter
+   |             -           ---- expected `Self` because of return type
+   |             |
+   |             found type parameter
+LL |         u
+   |         ^ 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