summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-item/associated-item-duplicate-names.stderr
blob: c9119c10271118ec1cb8e706eeb8054049e2b2c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0201]: duplicate definitions with name `Ty`:
  --> $DIR/associated-item-duplicate-names.rs:11:5
   |
LL |     type Ty = ();
   |     ------- previous definition of `Ty` here
LL |     type Ty = usize;
   |     ^^^^^^^ duplicate definition

error[E0201]: duplicate definitions with name `BAR`:
  --> $DIR/associated-item-duplicate-names.rs:13:5
   |
LL |     const BAR: u32 = 7;
   |     -------------- previous definition of `BAR` here
LL |     const BAR: u32 = 8;
   |     ^^^^^^^^^^^^^^ duplicate definition

error: aborting due to 2 previous errors

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