summary refs log tree commit diff
path: root/src/test/ui/associated-item/associated-item-duplicate-names-3.stderr
blob: 07ce5e621a626b455302ab545bb793ae7d02ea30 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0201]: duplicate definitions with name `Bar`:
  --> $DIR/associated-item-duplicate-names-3.rs:14:5
   |
LL |     type Bar = i16;
   |     --------------- previous definition of `Bar` here
LL |     type Bar = u16; //~ ERROR duplicate definitions
   |     ^^^^^^^^^^^^^^^ duplicate definition

error: aborting due to previous error

For more information about this error, try `rustc --explain E0201`.