about summary refs log tree commit diff
path: root/tests/ui/traits/issue-33140.stderr
blob: 7d7ee96f209b4cd1532024ca4e4d2eda34d3af6f (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
error[E0119]: conflicting implementations of trait `Trait` for type `(dyn Send + Sync + 'static)`
  --> $DIR/issue-33140.rs:9:1
   |
LL | impl Trait for dyn Send + Sync {
   | ------------------------------ first implementation here
...
LL | impl Trait for dyn Sync + Send {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(dyn Send + Sync + 'static)`

error[E0119]: conflicting implementations of trait `Trait2` for type `(dyn Send + Sync + 'static)`
  --> $DIR/issue-33140.rs:22:1
   |
LL | impl Trait2 for dyn Send + Sync {
   | ------------------------------- first implementation here
...
LL | impl Trait2 for dyn Sync + Send + Sync {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(dyn Send + Sync + 'static)`

error[E0592]: duplicate definitions with name `abc`
  --> $DIR/issue-33140.rs:29:5
   |
LL |     fn abc() -> bool {
   |     ^^^^^^^^^^^^^^^^ duplicate definitions for `abc`
...
LL |     fn abc() -> bool {
   |     ---------------- other definition for `abc`

error[E0034]: multiple applicable items in scope
  --> $DIR/issue-33140.rs:45:40
   |
LL |     assert_eq!(<Foo<dyn Send + Sync>>::abc(), false);
   |                                        ^^^ multiple `abc` found
   |
note: candidate #1 is defined in an impl for the type `Foo<(dyn Send + Sync + 'static)>`
  --> $DIR/issue-33140.rs:29:5
   |
LL |     fn abc() -> bool {
   |     ^^^^^^^^^^^^^^^^
note: candidate #2 is defined in an impl for the type `Foo<(dyn Send + Sync + 'static)>`
  --> $DIR/issue-33140.rs:35:5
   |
LL |     fn abc() -> bool {
   |     ^^^^^^^^^^^^^^^^

error[E0034]: multiple applicable items in scope
  --> $DIR/issue-33140.rs:47:40
   |
LL |     assert_eq!(<Foo<dyn Sync + Send>>::abc(), true);
   |                                        ^^^ multiple `abc` found
   |
note: candidate #1 is defined in an impl for the type `Foo<(dyn Send + Sync + 'static)>`
  --> $DIR/issue-33140.rs:29:5
   |
LL |     fn abc() -> bool {
   |     ^^^^^^^^^^^^^^^^
note: candidate #2 is defined in an impl for the type `Foo<(dyn Send + Sync + 'static)>`
  --> $DIR/issue-33140.rs:35:5
   |
LL |     fn abc() -> bool {
   |     ^^^^^^^^^^^^^^^^

error: aborting due to 5 previous errors

Some errors have detailed explanations: E0034, E0119, E0592.
For more information about an error, try `rustc --explain E0034`.