diff options
Diffstat (limited to 'crates/ra_ide/src/completion/complete_postfix.rs')
-rw-r--r-- | crates/ra_ide/src/completion/complete_postfix.rs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/crates/ra_ide/src/completion/complete_postfix.rs b/crates/ra_ide/src/completion/complete_postfix.rs index 14013dc2f..8735b9010 100644 --- a/crates/ra_ide/src/completion/complete_postfix.rs +++ b/crates/ra_ide/src/completion/complete_postfix.rs | |||
@@ -260,14 +260,14 @@ fn main() { | |||
260 | } | 260 | } |
261 | "#, | 261 | "#, |
262 | expect![[r#" | 262 | expect![[r#" |
263 | sn box Box::new(expr) | 263 | sn box Box::new(expr) |
264 | sn call function(expr) | 264 | sn call function(expr) |
265 | sn dbg dbg!(expr) | 265 | sn dbg dbg!(expr) |
266 | sn if if expr {} | 266 | sn if if expr {} |
267 | sn match match expr {} | 267 | sn match match expr {} |
268 | sn not !expr | 268 | sn not !expr |
269 | sn ref &expr | 269 | sn ref &expr |
270 | sn refm &mut expr | 270 | sn refm &mut expr |
271 | sn while while expr {} | 271 | sn while while expr {} |
272 | "#]], | 272 | "#]], |
273 | ); | 273 | ); |
@@ -283,12 +283,12 @@ fn main() { | |||
283 | } | 283 | } |
284 | "#, | 284 | "#, |
285 | expect![[r#" | 285 | expect![[r#" |
286 | sn box Box::new(expr) | 286 | sn box Box::new(expr) |
287 | sn call function(expr) | 287 | sn call function(expr) |
288 | sn dbg dbg!(expr) | 288 | sn dbg dbg!(expr) |
289 | sn match match expr {} | 289 | sn match match expr {} |
290 | sn ref &expr | 290 | sn ref &expr |
291 | sn refm &mut expr | 291 | sn refm &mut expr |
292 | "#]], | 292 | "#]], |
293 | ) | 293 | ) |
294 | } | 294 | } |