mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
fix: add parenthesis for or-pattern
This commit is contained in:
parent
5caa56e18a
commit
5c97361622
2 changed files with 18 additions and 1 deletions
|
@ -8743,7 +8743,6 @@ fn foo() {
|
|||
);
|
||||
}
|
||||
|
||||
|
||||
#[test]
|
||||
fn test_hover_function_with_pat_param() {
|
||||
check(
|
||||
|
@ -8856,4 +8855,20 @@ fn test_hover_function_with_pat_param() {
|
|||
```
|
||||
"#]],
|
||||
);
|
||||
|
||||
// Test case with Enum and Or pattern
|
||||
check(
|
||||
r#"enum MyEnum { A(i32), B(i32) } fn test_8$0((MyEnum::A(x) | MyEnum::B(x)): MyEnum) {}"#,
|
||||
expect![[r#"
|
||||
*test_8*
|
||||
|
||||
```rust
|
||||
test
|
||||
```
|
||||
|
||||
```rust
|
||||
fn test_8((MyEnum::A(x) | MyEnum::B(x)): MyEnum)
|
||||
```
|
||||
"#]],
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue