summaryrefslogtreecommitdiffstats
path: root/tests/ui/incoherent-inherent-impls/needs-has-incoherent-impls.stderr
blob: 8f70825115dd34ede3c23b669393f836204fc2f3 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
error[E0390]: cannot define inherent `impl` for a type outside of the crate where the type is defined
  --> $DIR/needs-has-incoherent-impls.rs:5:1
   |
LL | / impl extern_crate::StructWithAttr {
LL | |
LL | |     fn foo() {}
LL | | }
   | |_^
   |
   = help: consider moving this inherent impl into the crate defining the type if possible
help: alternatively add `#[rustc_allow_incoherent_impl]` to the relevant impl items
  --> $DIR/needs-has-incoherent-impls.rs:7:5
   |
LL |     fn foo() {}
   |     ^^^^^^^^^^^

error[E0390]: cannot define inherent `impl` for a type outside of the crate where the type is defined
  --> $DIR/needs-has-incoherent-impls.rs:13:1
   |
LL | / impl extern_crate::StructNoAttr {
LL | |
LL | |     fn foo() {}
LL | | }
   | |_^
   |
   = help: consider moving this inherent impl into the crate defining the type if possible
help: alternatively add `#[rustc_has_incoherent_inherent_impls]` to the type and `#[rustc_allow_incoherent_impl]` to the relevant impl items
  --> $DIR/needs-has-incoherent-impls.rs:13:1
   |
LL | / impl extern_crate::StructNoAttr {
LL | |
LL | |     fn foo() {}
LL | | }
   | |_^

error[E0390]: cannot define inherent `impl` for a type outside of the crate where the type is defined
  --> $DIR/needs-has-incoherent-impls.rs:17:1
   |
LL | / impl extern_crate::StructNoAttr {
LL | |
LL | |     #[rustc_allow_incoherent_impl]
LL | |     fn bar() {}
LL | | }
   | |_^
   |
   = help: consider moving this inherent impl into the crate defining the type if possible
help: alternatively add `#[rustc_has_incoherent_inherent_impls]` to the type and `#[rustc_allow_incoherent_impl]` to the relevant impl items
  --> $DIR/needs-has-incoherent-impls.rs:17:1
   |
LL | / impl extern_crate::StructNoAttr {
LL | |
LL | |     #[rustc_allow_incoherent_impl]
LL | |     fn bar() {}
LL | | }
   | |_^

error[E0390]: cannot define inherent `impl` for a type outside of the crate where the type is defined
  --> $DIR/needs-has-incoherent-impls.rs:22:1
   |
LL | / impl extern_crate::EnumWithAttr {
LL | |
LL | |     fn foo() {}
LL | | }
   | |_^
   |
   = help: consider moving this inherent impl into the crate defining the type if possible
help: alternatively add `#[rustc_allow_incoherent_impl]` to the relevant impl items
  --> $DIR/needs-has-incoherent-impls.rs:24:5
   |
LL |     fn foo() {}
   |     ^^^^^^^^^^^

error[E0390]: cannot define inherent `impl` for a type outside of the crate where the type is defined
  --> $DIR/needs-has-incoherent-impls.rs:30:1
   |
LL | / impl extern_crate::EnumNoAttr {
LL | |
LL | |     fn foo() {}
LL | | }
   | |_^
   |
   = help: consider moving this inherent impl into the crate defining the type if possible
help: alternatively add `#[rustc_has_incoherent_inherent_impls]` to the type and `#[rustc_allow_incoherent_impl]` to the relevant impl items
  --> $DIR/needs-has-incoherent-impls.rs:30:1
   |
LL | / impl extern_crate::EnumNoAttr {
LL | |
LL | |     fn foo() {}
LL | | }
   | |_^

error[E0390]: cannot define inherent `impl` for a type outside of the crate where the type is defined
  --> $DIR/needs-has-incoherent-impls.rs:34:1
   |
LL | / impl extern_crate::EnumNoAttr {
LL | |
LL | |     #[rustc_allow_incoherent_impl]
LL | |     fn bar() {}
LL | | }
   | |_^
   |
   = help: consider moving this inherent impl into the crate defining the type if possible
help: alternatively add `#[rustc_has_incoherent_inherent_impls]` to the type and `#[rustc_allow_incoherent_impl]` to the relevant impl items
  --> $DIR/needs-has-incoherent-impls.rs:34:1
   |
LL | / impl extern_crate::EnumNoAttr {
LL | |
LL | |     #[rustc_allow_incoherent_impl]
LL | |     fn bar() {}
LL | | }
   | |_^

error: aborting due to 6 previous errors

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