summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0201.stderr
blob: 2b9e51f76fddc5635f3651167dfe869e089b7683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error[E0201]: duplicate definitions with name `bar`:
  --> $DIR/E0201.rs:15:5
   |
LL |     fn bar(&self) -> bool { self.0 > 5 }
   |     ------------------------------------ previous definition of `bar` here
LL |     fn bar() {} //~ ERROR E0201
   |     ^^^^^^^^^^^ duplicate definition

error[E0201]: duplicate definitions with name `baz`:
  --> $DIR/E0201.rs:27:5
   |
LL |     fn baz(&self) -> bool { true }
   |     ------------------------------ previous definition of `baz` here
LL |     fn baz(&self) -> bool { self.0 > 5 } //~ ERROR E0201
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ duplicate definition

error[E0201]: duplicate definitions with name `Quux`:
  --> $DIR/E0201.rs:28:5
   |
LL |     type Quux = u32;
   |     ---------------- previous definition of `Quux` here
...
LL |     type Quux = u32; //~ ERROR E0201
   |     ^^^^^^^^^^^^^^^^ duplicate definition

error: aborting due to 3 previous errors

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