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