File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
#![ feature( int_log) ]
8
8
#![ feature( variant_count) ]
9
9
#![ feature( yeet_expr) ]
10
- #![ feature( is_some_with ) ]
10
+ #![ feature( is_some_and ) ]
11
11
#![ feature( nonzero_ops) ]
12
12
#![ feature( local_key_cell_methods) ]
13
13
#![ cfg_attr( bootstrap, feature( let_else) ) ]
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ impl<'tcx> Stack {
211
211
}
212
212
213
213
// Couldn't find it in the stack; but if there is an unknown bottom it might be there.
214
- let found = self . unknown_bottom . is_some_and ( |& unknown_limit| {
214
+ let found = self . unknown_bottom . is_some_and ( |unknown_limit| {
215
215
tag. 0 < unknown_limit. 0 // unknown_limit is an upper bound for what can be in the unknown bottom.
216
216
} ) ;
217
217
if found { Ok ( None ) } else { Err ( ( ) ) }
You can’t perform that action at this time.
0 commit comments