Fix unreachable pub

This commit is contained in:
Florian Diebold 2022-02-25 12:09:49 +01:00
parent 6fb5abbc03
commit 187e6bacac

View file

@ -23,7 +23,7 @@ pub(crate) enum AutoderefKind {
} }
pub(crate) struct Autoderef<'a, 'db> { pub(crate) struct Autoderef<'a, 'db> {
pub table: &'a mut InferenceTable<'db>, pub(crate) table: &'a mut InferenceTable<'db>,
ty: Ty, ty: Ty,
at_start: bool, at_start: bool,
steps: Vec<(AutoderefKind, Ty)>, steps: Vec<(AutoderefKind, Ty)>,