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