about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorA4-Tacks <wdsjxhno1001@163.com>2025-09-19 19:55:02 +0800
committerA4-Tacks <wdsjxhno1001@163.com>2025-09-19 19:59:47 +0800
commit024ea0274d0ac4c938712653e2f8e2e7fec619f2 (patch)
tree509fcd5775d73292bb846ef839209274d04fac2d /compiler/rustc_codegen_llvm/src
parentbb7cdc25d48f18667056adcb2380630b7d3b9f0b (diff)
downloadrust-024ea0274d0ac4c938712653e2f8e2e7fec619f2.tar.gz
rust-024ea0274d0ac4c938712653e2f8e2e7fec619f2.zip
Fix `else` completion before else keyword
Example
---
```rust
fn foo() {
    let x = if true {
        1
    } el$0 else {
        2
    };
}
```

**Before this PR**:

```text
else~    k [LS]
else if~ k [LS]
```

**After this PR**:

```text
else if~ k [LS]
```
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
0 files changed, 0 insertions, 0 deletions