mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 20:00:43 +00:00
10 lines
152 B
Rust
10 lines
152 B
Rust
struct Foo;
|
|
|
|
impl Foo {
|
|
fn orange(&self) {}
|
|
fn orange(&self) {}
|
|
//~^ ERROR duplicate definitions with name `orange` [E0592]
|
|
}
|
|
|
|
fn main() {}
|