]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/method-suggestion-no-duplication.stderr
Rollup merge of #104024 - noeddl:unused-must-use, r=compiler-errors
[rust.git] / src / test / ui / impl-trait / method-suggestion-no-duplication.stderr
1 error[E0599]: no method named `is_empty` found for struct `Foo` in the current scope
2   --> $DIR/method-suggestion-no-duplication.rs:7:15
3    |
4 LL | struct Foo;
5    | ---------- method `is_empty` not found for this struct
6 ...
7 LL |     foo(|s| s.is_empty());
8    |               ^^^^^^^^ method not found in `Foo`
9    |
10    = help: items from traits can only be used if the trait is implemented and in scope
11    = note: the following trait defines an item `is_empty`, perhaps you need to implement it:
12            candidate #1: `ExactSizeIterator`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0599`.