@@ -52,7 +52,7 @@ pub fn is_const_evaluatable<'tcx>(
52
52
} ;
53
53
54
54
if !is_anon_ct {
55
- if satisfied_from_param_env ( tcx, infcx, ct, param_env) ? {
55
+ if satisfied_from_param_env ( tcx, infcx, ct, param_env) {
56
56
return Ok ( ( ) ) ;
57
57
}
58
58
if ct. has_non_region_infer ( ) {
@@ -87,8 +87,14 @@ pub fn is_const_evaluatable<'tcx>(
87
87
// If we're evaluating a generic foreign constant, under a nightly compiler while
88
88
// the current crate does not enable `feature(generic_const_exprs)`, abort
89
89
// compilation with a useful error.
90
- Err ( _) if tcx. sess . is_nightly_build ( )
91
- && let ty:: ConstKind :: Expr ( _) = tcx. expand_abstract_consts ( ct) . kind ( ) =>
90
+ Err ( _)
91
+ if tcx. sess . is_nightly_build ( )
92
+ && satisfied_from_param_env (
93
+ tcx,
94
+ infcx,
95
+ tcx. expand_abstract_consts ( ct) ,
96
+ param_env,
97
+ ) =>
92
98
{
93
99
tcx. sess
94
100
. struct_span_fatal (
@@ -112,12 +118,15 @@ pub fn is_const_evaluatable<'tcx>(
112
118
} else if uv. has_non_region_param ( ) {
113
119
NotConstEvaluatable :: MentionsParam
114
120
} else {
115
- let guar = infcx. tcx . sess . delay_span_bug ( span, format ! ( "Missing value for constant, but no error reported?" ) ) ;
121
+ let guar = infcx. tcx . sess . delay_span_bug (
122
+ span,
123
+ format ! ( "Missing value for constant, but no error reported?" ) ,
124
+ ) ;
116
125
NotConstEvaluatable :: Error ( guar)
117
126
} ;
118
127
119
128
Err ( err)
120
- } ,
129
+ }
121
130
Err ( ErrorHandled :: Reported ( e) ) => Err ( NotConstEvaluatable :: Error ( e) ) ,
122
131
Ok ( _) => Ok ( ( ) ) ,
123
132
}
@@ -130,7 +139,7 @@ fn satisfied_from_param_env<'tcx>(
130
139
infcx : & InferCtxt < ' tcx > ,
131
140
ct : ty:: Const < ' tcx > ,
132
141
param_env : ty:: ParamEnv < ' tcx > ,
133
- ) -> Result < bool , NotConstEvaluatable > {
142
+ ) -> bool {
134
143
// Try to unify with each subtree in the AbstractConst to allow for
135
144
// `N + 1` being const evaluatable even if theres only a `ConstEvaluatable`
136
145
// predicate for `(N + 1) * 2`
@@ -179,12 +188,12 @@ fn satisfied_from_param_env<'tcx>(
179
188
180
189
if let ControlFlow :: Break ( ( ) ) = result {
181
190
debug ! ( "is_const_evaluatable: abstract_const ~~> ok" ) ;
182
- return Ok ( true ) ;
191
+ return true ;
183
192
}
184
193
}
185
194
_ => { } // don't care
186
195
}
187
196
}
188
197
189
- Ok ( false )
198
+ false
190
199
}
0 commit comments