mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
16 lines
207 B
Rust
16 lines
207 B
Rust
trait Foo {
|
|
fn foo();
|
|
//~^ NOTE trait method declared without `&self`
|
|
}
|
|
|
|
struct Bar;
|
|
|
|
impl Foo for Bar {
|
|
fn foo(&self) {}
|
|
//~^ ERROR E0185
|
|
//~| NOTE `&self` used in impl
|
|
}
|
|
|
|
fn main() {
|
|
}
|