mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-28 07:30:57 +00:00
Remove error when fields use autoderef
This commit is contained in:
parent
77374a9527
commit
d9993cb133
1 changed files with 6 additions and 8 deletions
|
@ -101,13 +101,11 @@ pub fn check_fn(
|
|||
}
|
||||
|
||||
let Some(used_field) = used_field else {
|
||||
if cfg!(debug_assertions) {
|
||||
panic!("Struct doesn't contain the correct field");
|
||||
} else {
|
||||
// Don't ICE when possible
|
||||
// FIXME: This can be reached if the field access uses autoderef.
|
||||
// `dec.all_fields()` should be replaced by something that uses autoderef.
|
||||
return;
|
||||
}
|
||||
};
|
||||
|
||||
let Some(correct_field) = correct_field else {
|
||||
return;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue