]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/suggest-methods.stderr
cb352361f33eff3665ff585aa024f719efa41519
[rust.git] / src / test / ui / suggestions / suggest-methods.stderr
1 error[E0599]: no method named `bat` found for type `Foo` in the current scope
2   --> $DIR/suggest-methods.rs:28:7
3    |
4 LL | struct Foo;
5    | ----------- method `bat` not found for this
6 ...
7 LL |     f.bat(1.0); //~ ERROR no method named
8    |       ^^^
9    |
10    = help: did you mean `bar`?
11
12 error[E0599]: no method named `is_emtpy` found for type `std::string::String` in the current scope
13   --> $DIR/suggest-methods.rs:31:15
14    |
15 LL |     let _ = s.is_emtpy(); //~ ERROR no method named
16    |               ^^^^^^^^
17    |
18    = help: did you mean `is_empty`?
19
20 error[E0599]: no method named `count_eos` found for type `u32` in the current scope
21   --> $DIR/suggest-methods.rs:35:19
22    |
23 LL |     let _ = 63u32.count_eos(); //~ ERROR no method named
24    |                   ^^^^^^^^^
25    |
26    = help: did you mean `count_zeros`?
27
28 error[E0599]: no method named `count_o` found for type `u32` in the current scope
29   --> $DIR/suggest-methods.rs:38:19
30    |
31 LL |     let _ = 63u32.count_o(); //~ ERROR no method named
32    |                   ^^^^^^^
33
34 error: aborting due to 4 previous errors
35
36 For more information about this error, try `rustc --explain E0599`.