You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #51257 - GuillaumeGomez:rollup, r=GuillaumeGomez
Rollup of 7 pull requests
Successful merges:
- #49546 (Stabilize short error format)
- #51123 (Update build instructions)
- #51146 (typeck: Do not pass the field check on field error)
- #51193 (Fixes some style issues in rustdoc "implementations on Foreign types")
- #51213 (fs: copy: Use File::set_permissions instead of fs::set_permissions)
- #51227 (mod.rs isn't beautiful)
- #51240 (Two minor parsing tweaks)
Failed merges:
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
enumSimpleEnum{
12
+
NoState,
13
+
}
14
+
15
+
structSimpleStruct{
16
+
no_state_here:u64,
17
+
}
18
+
19
+
fnmain(){
20
+
let _ = |simple| {
21
+
match simple {
22
+
SimpleStruct{
23
+
state:0,
24
+
//~^ struct `SimpleStruct` does not have a field named `state` [E0026]
25
+
..
26
+
} => (),
27
+
}
28
+
};
29
+
30
+
let _ = |simple| {
31
+
match simple {
32
+
SimpleStruct{
33
+
no_state_here:0,
34
+
no_state_here:1
35
+
//~^ ERROR field `no_state_here` bound multiple times in the pattern [E0025]
36
+
} => (),
37
+
}
38
+
};
39
+
40
+
let _ = |simple| {
41
+
match simple {
42
+
SimpleEnum::NoState{
43
+
state:0
44
+
//~^ ERROR variant `SimpleEnum::NoState` does not have a field named `state` [E0026]
0 commit comments