]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/methods/method-ambig-two-traits-cross-crate.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / methods / method-ambig-two-traits-cross-crate.stderr
index fa3add81a28f5af1b5db7e4d5981fb50da301cca..1b354fc697adc93c9c67caad69054e60945e78f3 100644 (file)
@@ -10,11 +10,11 @@ note: candidate #1 is defined in an impl of the trait `Me2` for the type `usize`
 LL | impl Me2 for usize { fn me(&self) -> usize { *self } }
    |                      ^^^^^^^^^^^^^^^^^^^^^
    = note: candidate #2 is defined in an impl of the trait `ambig_impl_2_lib::Me` for the type `usize`
-help: disambiguate the method call for candidate #1
+help: disambiguate the associated function for candidate #1
    |
 LL | fn main() { Me2::me(&1_usize); }
    |             ^^^^^^^^^^^^^^^^^
-help: disambiguate the method call for candidate #2
+help: disambiguate the associated function for candidate #2
    |
 LL | fn main() { ambig_impl_2_lib::Me::me(&1_usize); }
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^