mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
213 B
Rust
15 lines
213 B
Rust
struct Foo {
|
|
baz: usize
|
|
}
|
|
|
|
impl Foo {
|
|
fn bar() {
|
|
Foo { baz: 0 }.bar();
|
|
//~^ ERROR: no method named `bar` found
|
|
}
|
|
|
|
fn bar() { //~ ERROR duplicate definitions
|
|
}
|
|
}
|
|
|
|
fn main() {}
|