summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/same_name_method.stderr
blob: 0c6908c09593fccf15414bcef8c78bf854eacb3f (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
error: method's name is the same as an existing method in a trait
  --> $DIR/same_name_method.rs:21:13
   |
LL |             fn foo() {}
   |             ^^^^^^^^^^^
   |
note: existing `foo` defined here
  --> $DIR/same_name_method.rs:25:13
   |
LL |             fn foo() {}
   |             ^^^^^^^^^^^
   = note: `-D clippy::same-name-method` implied by `-D warnings`

error: method's name is the same as an existing method in a trait
  --> $DIR/same_name_method.rs:35:13
   |
LL |             fn clone() {}
   |             ^^^^^^^^^^^^^
   |
note: existing `clone` defined here
  --> $DIR/same_name_method.rs:31:18
   |
LL |         #[derive(Clone)]
   |                  ^^^^^
   = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)

error: method's name is the same as an existing method in a trait
  --> $DIR/same_name_method.rs:45:13
   |
LL |             fn foo() {}
   |             ^^^^^^^^^^^
   |
note: existing `foo` defined here
  --> $DIR/same_name_method.rs:49:13
   |
LL |             fn foo() {}
   |             ^^^^^^^^^^^

error: method's name is the same as an existing method in a trait
  --> $DIR/same_name_method.rs:59:13
   |
LL |             fn foo() {}
   |             ^^^^^^^^^^^
   |
note: existing `foo` defined here
  --> $DIR/same_name_method.rs:62:9
   |
LL |         impl T1 for S {}
   |         ^^^^^^^^^^^^^^^^

error: method's name is the same as an existing method in a trait
  --> $DIR/same_name_method.rs:71:13
   |
LL |             fn foo() {}
   |             ^^^^^^^^^^^
   |
note: existing `foo` defined here
  --> $DIR/same_name_method.rs:74:9
   |
LL |         impl T1 for S {}
   |         ^^^^^^^^^^^^^^^^

error: aborting due to 5 previous errors