77f4022303
This reverts commit 5558c64f33
.
43 lines
1.9 KiB
Plaintext
43 lines
1.9 KiB
Plaintext
error[E0408]: variable `a` is not bound in all patterns
|
|
--> $DIR/issue-39698.rs:20:23
|
|
|
|
|
20 | T::T1(a, d) | T::T2(d, b) | T::T3(c) | T::T4(a) => { println!("{:?}", a); }
|
|
| - ^^^^^^^^^^^ ^^^^^^^^ - variable not in all patterns
|
|
| | | |
|
|
| | | pattern doesn't bind `a`
|
|
| | pattern doesn't bind `a`
|
|
| variable not in all patterns
|
|
|
|
error[E0408]: variable `d` is not bound in all patterns
|
|
--> $DIR/issue-39698.rs:20:37
|
|
|
|
|
20 | T::T1(a, d) | T::T2(d, b) | T::T3(c) | T::T4(a) => { println!("{:?}", a); }
|
|
| - - ^^^^^^^^ ^^^^^^^^ pattern doesn't bind `d`
|
|
| | | |
|
|
| | | pattern doesn't bind `d`
|
|
| | variable not in all patterns
|
|
| variable not in all patterns
|
|
|
|
error[E0408]: variable `b` is not bound in all patterns
|
|
--> $DIR/issue-39698.rs:20:9
|
|
|
|
|
20 | T::T1(a, d) | T::T2(d, b) | T::T3(c) | T::T4(a) => { println!("{:?}", a); }
|
|
| ^^^^^^^^^^^ - ^^^^^^^^ ^^^^^^^^ pattern doesn't bind `b`
|
|
| | | |
|
|
| | | pattern doesn't bind `b`
|
|
| | variable not in all patterns
|
|
| pattern doesn't bind `b`
|
|
|
|
error[E0408]: variable `c` is not bound in all patterns
|
|
--> $DIR/issue-39698.rs:20:9
|
|
|
|
|
20 | T::T1(a, d) | T::T2(d, b) | T::T3(c) | T::T4(a) => { println!("{:?}", a); }
|
|
| ^^^^^^^^^^^ ^^^^^^^^^^^ - ^^^^^^^^ pattern doesn't bind `c`
|
|
| | | |
|
|
| | | variable not in all patterns
|
|
| | pattern doesn't bind `c`
|
|
| pattern doesn't bind `c`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|