about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/impl.stderr
blob: 355927b782537e7c9600b29623db31a501c25628 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
error: multiple implementations of this structure
  --> tests/ui/impl.rs:10:1
   |
LL | / impl MyStruct {
LL | |
LL | |
LL | |     fn second() {}
LL | | }
   | |_^
   |
note: first implementation here
  --> tests/ui/impl.rs:6:1
   |
LL | / impl MyStruct {
LL | |     fn first() {}
LL | | }
   | |_^
   = note: `-D clippy::multiple-inherent-impl` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::multiple_inherent_impl)]`

error: multiple implementations of this structure
  --> tests/ui/impl.rs:26:5
   |
LL | /     impl super::MyStruct {
LL | |
LL | |
LL | |         fn third() {}
LL | |     }
   | |_____^
   |
note: first implementation here
  --> tests/ui/impl.rs:6:1
   |
LL | / impl MyStruct {
LL | |     fn first() {}
LL | | }
   | |_^

error: multiple implementations of this structure
  --> tests/ui/impl.rs:48:1
   |
LL | / impl WithArgs<u64> {
LL | |
LL | |
LL | |     fn f3() {}
LL | | }
   | |_^
   |
note: first implementation here
  --> tests/ui/impl.rs:45:1
   |
LL | / impl WithArgs<u64> {
LL | |     fn f2() {}
LL | | }
   | |_^

error: multiple implementations of this structure
  --> tests/ui/impl.rs:71:1
   |
LL | impl OneAllowedImpl {} // Lint, only one of the three blocks is allowed.
   | ^^^^^^^^^^^^^^^^^^^^^^
   |
note: first implementation here
  --> tests/ui/impl.rs:68:1
   |
LL | impl OneAllowedImpl {}
   | ^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 4 previous errors