rust/tests/ui/suggestions/suggest-methods.stderr

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

31 lines
1.1 KiB
Plaintext
Raw Normal View History

error[E0599]: no method named `bat` found for struct `Foo` in the current scope
2018-12-25 15:56:47 +00:00
--> $DIR/suggest-methods.rs:18:7
|
2018-02-23 00:42:32 +00:00
LL | struct Foo;
| ---------- method `bat` not found for this struct
...
2019-03-09 12:03:44 +00:00
LL | f.bat(1.0);
| ^^^ help: there is a method with a similar name: `bar`
error[E0599]: no method named `is_emtpy` found for struct `String` in the current scope
2018-12-25 15:56:47 +00:00
--> $DIR/suggest-methods.rs:21:15
2017-11-16 17:20:51 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = s.is_emtpy();
| ^^^^^^^^ help: there is a method with a similar name: `is_empty`
error[E0599]: no method named `count_eos` found for type `u32` in the current scope
2018-12-25 15:56:47 +00:00
--> $DIR/suggest-methods.rs:25:19
|
2019-03-09 12:03:44 +00:00
LL | let _ = 63u32.count_eos();
| ^^^^^^^^^ help: there is a method with a similar name: `count_zeros`
error[E0599]: no method named `count_o` found for type `u32` in the current scope
2018-12-25 15:56:47 +00:00
--> $DIR/suggest-methods.rs:28:19
|
2019-03-09 12:03:44 +00:00
LL | let _ = 63u32.count_o();
| ^^^^^^^ help: there is a method with a similar name: `count_ones`
error: aborting due to 4 previous errors
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0599`.