rust/src/test/ui/suggestions/suggest-methods.stderr

37 lines
1.1 KiB
Plaintext
Raw Normal View History

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