about summary refs log tree commit diff
path: root/tests/ui/suggestions/suggest-methods.stderr
blob: 6f1c2cc4cab09f042e25ee1b19c41ea734fd61a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
error[E0599]: no method named `bat` found for struct `Foo` in the current scope
  --> $DIR/suggest-methods.rs:19:7
   |
LL | struct Foo;
   | ---------- method `bat` not found for this struct
...
LL |     f.bat(1.0);
   |       ^^^
   |
help: there is a method `bag` with a similar name, but with different arguments
  --> $DIR/suggest-methods.rs:9:5
   |
LL |     fn bag(&self);
   |     ^^^^^^^^^^^^^^

error[E0599]: no method named `is_emtpy` found for struct `String` in the current scope
  --> $DIR/suggest-methods.rs:22:15
   |
LL |     let _ = s.is_emtpy();
   |               ^^^^^^^^
   |
help: there is a method `is_empty` with a similar name
   |
LL -     let _ = s.is_emtpy();
LL +     let _ = s.is_empty();
   |

error[E0599]: no method named `count_eos` found for type `u32` in the current scope
  --> $DIR/suggest-methods.rs:27:19
   |
LL |     let _ = 63u32.count_eos();
   |                   ^^^^^^^^^
   |
help: there is a method `count_zeros` with a similar name
   |
LL -     let _ = 63u32.count_eos();
LL +     let _ = 63u32.count_zeros();
   |

error[E0599]: no method named `count_o` found for type `u32` in the current scope
  --> $DIR/suggest-methods.rs:30:19
   |
LL |     let _ = 63u32.count_o();
   |                   ^^^^^^^
   |
help: there is a method `count_ones` with a similar name
   |
LL -     let _ = 63u32.count_o();
LL +     let _ = 63u32.count_ones();
   |

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0599`.