]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/methods/method-self-arg-1.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / methods / method-self-arg-1.stderr
index 8485a5403ff854d868521552c07edf5a9e8a4b6e..17ea61fc4bddb5de20986d94d26c54273c074d4f 100644 (file)
@@ -4,20 +4,17 @@ error[E0308]: mismatched types
 LL |     Foo::bar(x);
    |              ^
    |              |
-   |              expected &Foo, found struct `Foo`
+   |              expected `&Foo`, found struct `Foo`
    |              help: consider borrowing here: `&x`
-   |
-   = note: expected type `&Foo`
-              found type `Foo`
 
 error[E0308]: mismatched types
-  --> $DIR/method-self-arg-1.rs:15:14
+  --> $DIR/method-self-arg-1.rs:13:14
    |
 LL |     Foo::bar(&42);
    |              ^^^ expected struct `Foo`, found integer
    |
-   = note: expected type `&Foo`
-              found type `&{integer}`
+   = note: expected reference `&Foo`
+              found reference `&{integer}`
 
 error: aborting due to 2 previous errors