]> git.proxmox.com Git - rustc.git/blob - src/test/ui/traits/object/auto-dedup-in-impl.stderr
New upstream version 1.52.0~beta.3+dfsg1
[rustc.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`.