10 lines
124 B
Rust
10 lines
124 B
Rust
struct Foo;
|
|
|
|
impl Foo {
|
|
fn orange(&self) {}
|
|
fn orange(&self) {}
|
|
//~^ ERROR duplicate definition
|
|
}
|
|
|
|
fn main() {}
|