Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
associated-item
/
impl-duplicate-methods.rs
blob: 328d54d5ac41188e8e7d1f0e7eb455d4d302c8d7 [
file
] [
log
] [
blame
]
struct
Foo
;
impl
Foo
{
fn
orange
(&
self
)
{}
fn
orange
(&
self
)
{}
//~^ ERROR duplicate definitions with name `orange` [E0592]
}
fn
main
()
{}