Fix incorrect DerefMut test reference type
This commit is contained in:
parent
3bc5d81a33
commit
32ad929b82
@ -1082,7 +1082,7 @@ fn deref(&self) -> &Self::Target {
|
||||
}
|
||||
|
||||
impl DerefMut for T {
|
||||
fn deref_mut(&self) -> &mut Self::Target {
|
||||
fn deref_mut(&mut self) -> &mut Self::Target {
|
||||
&mut self.0
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user