diff options
author | Lukas Wirth <[email protected]> | 2020-10-11 17:27:38 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2020-10-11 17:39:03 +0100 |
commit | 9909ccb4f4a25314f0b831d56c8447345d8fa396 (patch) | |
tree | 2f8e621258aebc627b952c60e6251f0405f4d4f2 /crates/hir_def | |
parent | cde189c5d5d77afd077b067a887bbc7e3adb4f80 (diff) |
Fix `mut self` not emitting mutable binding on `self` use
Diffstat (limited to 'crates/hir_def')
-rw-r--r-- | crates/hir_def/src/body/lower.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/hir_def/src/body/lower.rs b/crates/hir_def/src/body/lower.rs index 2d91bb21f..01e72690a 100644 --- a/crates/hir_def/src/body/lower.rs +++ b/crates/hir_def/src/body/lower.rs | |||
@@ -107,7 +107,10 @@ impl ExprCollector<'_> { | |||
107 | let param_pat = self.alloc_pat( | 107 | let param_pat = self.alloc_pat( |
108 | Pat::Bind { | 108 | Pat::Bind { |
109 | name: name![self], | 109 | name: name![self], |
110 | mode: BindingAnnotation::Unannotated, | 110 | mode: BindingAnnotation::new( |
111 | self_param.mut_token().is_some() && self_param.amp_token().is_none(), | ||
112 | false, | ||
113 | ), | ||
111 | subpat: None, | 114 | subpat: None, |
112 | }, | 115 | }, |
113 | Either::Right(ptr), | 116 | Either::Right(ptr), |