rust/tests/ui/impl-trait/method-suggestion-no-duplication.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
647 B
Plaintext
Raw Normal View History

error[E0599]: no method named `is_empty` found for struct `Foo` in the current scope
2019-04-22 16:35:37 +00:00
--> $DIR/method-suggestion-no-duplication.rs:7:15
|
2018-02-23 00:42:32 +00:00
LL | struct Foo;
| ---------- method `is_empty` not found for this struct
...
2018-02-23 00:42:32 +00:00
LL | foo(|s| s.is_empty());
| ^^^^^^^^ method not found in `Foo`
|
= help: items from traits can only be used if the trait is implemented and in scope
= note: the following trait defines an item `is_empty`, perhaps you need to implement it:
candidate #1: `ExactSizeIterator`
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0599`.