rust/src/test/ui/associated-item/associated-item-duplicate-names-3.stderr

12 lines
406 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0201]: duplicate definitions with name `Bar`:
2018-12-25 15:56:47 +00:00
--> $DIR/associated-item-duplicate-names-3.rs:14:5
2018-08-08 12:28:26 +00:00
|
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`.