mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
Fix incorrect DerefMut test reference type
This commit is contained in:
parent
3bc5d81a33
commit
32ad929b82
1 changed files with 1 additions and 1 deletions
|
@ -1082,7 +1082,7 @@ impl Deref for T {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DerefMut for T {
|
impl DerefMut for T {
|
||||||
fn deref_mut(&self) -> &mut Self::Target {
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
||||||
&mut self.0
|
&mut self.0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue