@@ -12,8 +12,9 @@ use namespace::Namespace;
12
12
use rustc:: hir:: def_id:: { CrateNum , DefId , LOCAL_CRATE } ;
13
13
use rustc:: hir;
14
14
use rustc:: hir:: itemlikevisit:: ItemLikeVisitor ;
15
- use rustc:: traits:: { self , IntercrateMode } ;
15
+ use rustc:: traits:: { self , IntercrateMode , FutureCompatOverlapErrorKind } ;
16
16
use rustc:: ty:: TyCtxt ;
17
+ use rustc:: ty:: relate:: TraitObjectMode ;
17
18
18
19
use lint;
19
20
@@ -29,9 +30,11 @@ struct InherentOverlapChecker<'a, 'tcx: 'a> {
29
30
}
30
31
31
32
impl < ' a , ' tcx > InherentOverlapChecker < ' a , ' tcx > {
32
- fn check_for_common_items_in_impls ( & self , impl1 : DefId , impl2 : DefId ,
33
- overlap : traits:: OverlapResult ,
34
- used_to_be_allowed : bool ) {
33
+ fn check_for_common_items_in_impls (
34
+ & self , impl1 : DefId , impl2 : DefId ,
35
+ overlap : traits:: OverlapResult ,
36
+ used_to_be_allowed : Option < FutureCompatOverlapErrorKind > )
37
+ {
35
38
36
39
let name_and_namespace = |def_id| {
37
40
let item = self . tcx . associated_item ( def_id) ;
@@ -47,19 +50,28 @@ impl<'a, 'tcx> InherentOverlapChecker<'a, 'tcx> {
47
50
for & item2 in & impl_items2[ ..] {
48
51
if ( name, namespace) == name_and_namespace ( item2) {
49
52
let node_id = self . tcx . hir . as_local_node_id ( impl1) ;
50
- let mut err = if used_to_be_allowed && node_id. is_some ( ) {
51
- self . tcx . struct_span_lint_node (
52
- lint:: builtin:: INCOHERENT_FUNDAMENTAL_IMPLS ,
53
- node_id. unwrap ( ) ,
54
- self . tcx . span_of_impl ( item1) . unwrap ( ) ,
55
- & format ! ( "duplicate definitions with name `{}` (E0592)" , name)
56
- )
57
- } else {
58
- struct_span_err ! ( self . tcx. sess,
59
- self . tcx. span_of_impl( item1) . unwrap( ) ,
60
- E0592 ,
61
- "duplicate definitions with name `{}`" ,
62
- name)
53
+ let mut err = match used_to_be_allowed {
54
+ Some ( kind) if node_id. is_some ( ) => {
55
+ let lint = match kind {
56
+ FutureCompatOverlapErrorKind :: Issue43355 =>
57
+ lint:: builtin:: INCOHERENT_FUNDAMENTAL_IMPLS ,
58
+ FutureCompatOverlapErrorKind :: Issue33140 =>
59
+ lint:: builtin:: ORDER_DEPENDENT_TRAIT_OBJECTS ,
60
+ } ;
61
+ self . tcx . struct_span_lint_node (
62
+ lint,
63
+ node_id. unwrap ( ) ,
64
+ self . tcx . span_of_impl ( item1) . unwrap ( ) ,
65
+ & format ! ( "duplicate definitions with name `{}` (E0592)" , name)
66
+ )
67
+ }
68
+ _ => {
69
+ struct_span_err ! ( self . tcx. sess,
70
+ self . tcx. span_of_impl( item1) . unwrap( ) ,
71
+ E0592 ,
72
+ "duplicate definitions with name `{}`" ,
73
+ name)
74
+ }
63
75
} ;
64
76
65
77
err. span_label ( self . tcx . span_of_impl ( item1) . unwrap ( ) ,
@@ -82,36 +94,61 @@ impl<'a, 'tcx> InherentOverlapChecker<'a, 'tcx> {
82
94
83
95
for ( i, & impl1_def_id) in impls. iter ( ) . enumerate ( ) {
84
96
for & impl2_def_id in & impls[ ( i + 1 ) ..] {
85
- let used_to_be_allowed = traits:: overlapping_impls (
97
+ let mut used_to_be_allowed = traits:: overlapping_impls (
86
98
self . tcx ,
87
99
impl1_def_id,
88
100
impl2_def_id,
89
101
IntercrateMode :: Issue43355 ,
102
+ TraitObjectMode :: NoSquash ,
90
103
|overlap| {
91
104
self . check_for_common_items_in_impls (
92
105
impl1_def_id,
93
106
impl2_def_id,
94
107
overlap,
95
- false ,
108
+ Some ( FutureCompatOverlapErrorKind :: Issue43355 ) ,
96
109
) ;
97
110
false
98
111
} ,
99
112
|| true ,
100
113
) ;
101
114
115
+ if used_to_be_allowed {
116
+ used_to_be_allowed = traits:: overlapping_impls (
117
+ self . tcx ,
118
+ impl1_def_id,
119
+ impl2_def_id,
120
+ IntercrateMode :: Fixed ,
121
+ TraitObjectMode :: NoSquash ,
122
+ |overlap| {
123
+ self . check_for_common_items_in_impls (
124
+ impl1_def_id,
125
+ impl2_def_id,
126
+ overlap,
127
+ None ,
128
+ ) ;
129
+ false
130
+ } ,
131
+ || true ,
132
+ ) ;
133
+ }
134
+
102
135
if used_to_be_allowed {
103
136
traits:: overlapping_impls (
104
137
self . tcx ,
105
138
impl1_def_id,
106
139
impl2_def_id,
107
140
IntercrateMode :: Fixed ,
108
- |overlap| self . check_for_common_items_in_impls (
109
- impl1_def_id,
110
- impl2_def_id,
111
- overlap,
112
- true ,
113
- ) ,
114
- || ( ) ,
141
+ TraitObjectMode :: SquashAutoTraitsIssue33140 ,
142
+ |overlap| {
143
+ self . check_for_common_items_in_impls (
144
+ impl1_def_id,
145
+ impl2_def_id,
146
+ overlap,
147
+ Some ( FutureCompatOverlapErrorKind :: Issue33140 ) ,
148
+ ) ;
149
+ false
150
+ } ,
151
+ || true ,
115
152
) ;
116
153
}
117
154
}
0 commit comments