]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/trait-object-auto-dedup-in-impl.stderr
Add explanation for E0592
[rust.git] / src / test / ui / traits / trait-object-auto-dedup-in-impl.stderr
1 error[E0592]: duplicate definitions with name `test`
2   --> $DIR/trait-object-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`.