rust/tests/ui/associated-item/impl-duplicate-methods.rs

10 lines
152 B
Rust

struct Foo;
impl Foo {
fn orange(&self) {}
fn orange(&self) {}
//~^ ERROR duplicate definitions with name `orange` [E0592]
}
fn main() {}