2017-03-20 14:02:51 -05:00
|
|
|
error[E0599]: no method named `bat` found for type `Foo` in the current scope
|
|
|
|
--> $DIR/suggest-methods.rs:28:7
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | struct Foo;
|
2017-11-16 00:18:52 -06:00
|
|
|
| ----------- method `bat` not found for this
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | f.bat(1.0); //~ ERROR no method named
|
2017-03-20 14:02:51 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= help: did you mean `bar`?
|
|
|
|
|
|
|
|
error[E0599]: no method named `is_emtpy` found for type `std::string::String` in the current scope
|
2017-11-16 11:20:51 -06:00
|
|
|
--> $DIR/suggest-methods.rs:31:15
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = s.is_emtpy(); //~ ERROR no method named
|
2017-11-16 11:20:51 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: did you mean `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
|
2017-09-21 06:04:11 -05:00
|
|
|
--> $DIR/suggest-methods.rs:35:19
|
2017-03-20 14:02:51 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = 63u32.count_eos(); //~ ERROR no method named
|
2017-03-20 14:02:51 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: did you mean `count_zeros`?
|
|
|
|
|
|
|
|
error[E0599]: no method named `count_o` found for type `u32` in the current scope
|
2017-09-21 06:04:11 -05:00
|
|
|
--> $DIR/suggest-methods.rs:38:19
|
2017-03-20 14:02:51 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = 63u32.count_o(); //~ ERROR no method named
|
2017-03-20 14:02:51 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0599"
|