]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/object/auto-dedup-in-impl.stderr
Merge commit 'c4416f20dcaec5d93077f72470e83e150fb923b1' into sync-rustfmt
[rust.git] / src / test / ui / traits / object / auto-dedup-in-impl.stderr
1 error[E0592]: duplicate definitions with name `test`
2   --> $DIR/auto-dedup-in-impl.rs:14:5
3    |
4 LL |     fn test(&self) { println!("one"); }
5    |     ^^^^^^^^^^^^^^ duplicate definitions for `test`
6 ...
7 LL |     fn test(&self) { println!("two"); }
8    |     -------------- other definition for `test`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0592`.