2017-03-20 19:02:51 +00:00
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn bar(self) {}
|
|
|
|
fn baz(&self, x: f64) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait FooT {
|
|
|
|
fn bag(&self);
|
2024-02-10 03:33:20 +00:00
|
|
|
//~^ HELP there is a method
|
2017-03-20 19:02:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FooT for Foo {
|
|
|
|
fn bag(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let f = Foo;
|
2017-11-20 12:13:27 +00:00
|
|
|
f.bat(1.0); //~ ERROR no method named
|
2017-03-20 19:02:51 +00:00
|
|
|
|
|
|
|
let s = "foo".to_string();
|
2017-11-20 12:13:27 +00:00
|
|
|
let _ = s.is_emtpy(); //~ ERROR no method named
|
2024-02-10 03:33:20 +00:00
|
|
|
//~^ HELP there is a method
|
2017-03-20 19:02:51 +00:00
|
|
|
|
2017-09-21 11:04:11 +00:00
|
|
|
// Generates a warning for `count_zeros()`. `count_ones()` is also a close
|
|
|
|
// match, but the former is closer.
|
2017-11-20 12:13:27 +00:00
|
|
|
let _ = 63u32.count_eos(); //~ ERROR no method named
|
2024-02-10 03:33:20 +00:00
|
|
|
//~^ HELP there is a method
|
2017-03-20 19:02:51 +00:00
|
|
|
|
2017-11-20 12:13:27 +00:00
|
|
|
let _ = 63u32.count_o(); //~ ERROR no method named
|
2024-02-10 03:33:20 +00:00
|
|
|
//~^ HELP there is a method
|
2017-03-20 19:02:51 +00:00
|
|
|
|
2017-09-21 11:04:11 +00:00
|
|
|
}
|