blob: 2596079d37906a3e1d9dc8e3e45a68b660a1dc94 [file] [log] [blame]
struct Foo {
baz: usize
}
impl Foo {
fn bar() {
Foo { baz: 0 }.bar();
}
fn bar() { //~ ERROR duplicate definitions
}
}
fn main() {}