]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/methods/method-call-err-msg.stderr
Do not suggest implementing traits if present in predicates
[rust.git] / src / test / ui / methods / method-call-err-msg.stderr
index 0c48e93347d850d4846301b3bdae55648711dc8a..4678642dd6d0cb9bfff87afa1879d6af72ae7b3d 100644 (file)
@@ -38,18 +38,17 @@ LL | pub struct Foo;
    | ---------------
    | |
    | method `take` not found for this
-   | this type doesn't satisfy the bound `std::iter::Iterator`
+   | doesn't satisfy `Foo: std::iter::Iterator`
 ...
 LL |      .take()
    |       ^^^^ method not found in `Foo`
    |
    = note: the method `take` exists but the following trait bounds were not satisfied:
-           `&mut Foo: std::iter::Iterator`
            `Foo: std::iter::Iterator`
+           which is required by `&mut Foo: std::iter::Iterator`
    = help: items from traits can only be used if the trait is implemented and in scope
-   = note: the following traits define an item `take`, perhaps you need to implement one of them:
-           candidate #1: `std::io::Read`
-           candidate #2: `std::iter::Iterator`
+   = note: the following trait defines an item `take`, perhaps you need to implement it:
+           candidate #1: `std::iter::Iterator`
 
 error[E0061]: this function takes 3 arguments but 0 arguments were supplied
   --> $DIR/method-call-err-msg.rs:21:7