mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
274 B
Rust
17 lines
274 B
Rust
// Test that duplicate methods in impls are not allowed
|
|
|
|
struct Foo;
|
|
|
|
trait Bar {
|
|
fn bar(&self) -> isize;
|
|
}
|
|
|
|
impl Bar for Foo {
|
|
fn bar(&self) -> isize {1}
|
|
fn bar(&self) -> isize {2} //~ ERROR duplicate definitions
|
|
}
|
|
|
|
fn main() {
|
|
println!("{}", Foo.bar());
|
|
}
|