We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01cc48f commit 2abb463Copy full SHA for 2abb463
polonius-engine/src/output/mod.rs
@@ -169,6 +169,9 @@ impl<T: FactTypes> Output<T> {
169
move_errors,
170
) = initialization::compute(initialization_ctx, &cfg_edge, &mut result);
171
172
+ // FIXME: move errors should prevent the computation from continuing: we can't compute
173
+ // liveness and analyze loans accurately when there are move errors, and should early
174
+ // return here.
175
for &(path, location) in move_errors.iter() {
176
result.move_errors.entry(location).or_default().push(path);
177
}
0 commit comments