This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit 540a50d
committed
Auto merge of rust-lang#109941 - compiler-errors:rollup-5lsst2u, r=compiler-errors
Rollup of 9 pull requests
Successful merges:
- rust-lang#109723 (Pull some tuple variant fields out into their own struct)
- rust-lang#109838 (Fix `non_exhaustive_omitted_patterns` lint span)
- rust-lang#109901 (Enforce VarDebugInfo::Place in MIR validation.)
- rust-lang#109913 (Doc-comment `IndexVec::from_elem` and use it in a few more places)
- rust-lang#109914 (Emit feature error for parenthesized generics in associated type bounds)
- rust-lang#109919 (rustdoc: escape GAT args in more cases)
- rust-lang#109937 (Don't collect return-position impl traits for documentation)
- rust-lang#109938 (Move a const-prop-lint specific hack from mir interpret to const-prop-lint and make it fallible)
- rust-lang#109940 (Add regression test for rust-lang#93911)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
44 files changed
+533
-235
lines changed- compiler
- rustc_ast_lowering/src
- rustc_ast_passes/src
- rustc_ast_pretty/src/pprust/state
- rustc_ast/src
- rustc_borrowck/src/type_check/liveness
- rustc_builtin_macros/src
- rustc_codegen_ssa/src/mir
- rustc_const_eval/src
- interpret
- transform
- rustc_expand/src
- rustc_index/src
- rustc_infer/src/infer/lexical_region_resolve
- rustc_lint/src
- rustc_middle/src
- mir
- ty
- rustc_mir_build/src/thir/pattern
- rustc_mir_transform/src
- coverage
- rustc_parse/src/parser
- rustc_resolve/src
- rustc_ty_utils/src
- src
- librustdoc
- html
- tools
- clippy
- clippy_lints/src
- clippy_utils/src
- rustfmt/src
- tests
- rustdoc
- generic-associated-types
- ui
- associated-type-bounds/return-type-notation
- lifetimes
- mir
- rfc-2008-non-exhaustive
- stats
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
44 files changed
+533
-235
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2890 | 2890 | | |
2891 | 2891 | | |
2892 | 2892 | | |
| 2893 | + | |
| 2894 | + | |
| 2895 | + | |
| 2896 | + | |
| 2897 | + | |
| 2898 | + | |
| 2899 | + | |
| 2900 | + | |
| 2901 | + | |
| 2902 | + | |
| 2903 | + | |
| 2904 | + | |
| 2905 | + | |
| 2906 | + | |
2893 | 2907 | | |
2894 | 2908 | | |
2895 | 2909 | | |
| |||
2903 | 2917 | | |
2904 | 2918 | | |
2905 | 2919 | | |
2906 | | - | |
| 2920 | + | |
2907 | 2921 | | |
2908 | 2922 | | |
2909 | 2923 | | |
2910 | | - | |
| 2924 | + | |
2911 | 2925 | | |
2912 | 2926 | | |
2913 | 2927 | | |
| |||
3023 | 3037 | | |
3024 | 3038 | | |
3025 | 3039 | | |
3026 | | - | |
| 3040 | + | |
3027 | 3041 | | |
3028 | 3042 | | |
3029 | 3043 | | |
| |||
3035 | 3049 | | |
3036 | 3050 | | |
3037 | 3051 | | |
3038 | | - | |
| 3052 | + | |
3039 | 3053 | | |
3040 | 3054 | | |
3041 | 3055 | | |
| |||
3046 | 3060 | | |
3047 | 3061 | | |
3048 | 3062 | | |
3049 | | - | |
| 3063 | + | |
3050 | 3064 | | |
3051 | 3065 | | |
3052 | 3066 | | |
| |||
3059 | 3073 | | |
3060 | 3074 | | |
3061 | 3075 | | |
3062 | | - | |
| 3076 | + | |
3063 | 3077 | | |
3064 | 3078 | | |
3065 | 3079 | | |
| |||
3084 | 3098 | | |
3085 | 3099 | | |
3086 | 3100 | | |
3087 | | - | |
| 3101 | + | |
| 3102 | + | |
| 3103 | + | |
3088 | 3104 | | |
3089 | 3105 | | |
3090 | 3106 | | |
| |||
3097 | 3113 | | |
3098 | 3114 | | |
3099 | 3115 | | |
3100 | | - | |
| 3116 | + | |
| 3117 | + | |
| 3118 | + | |
3101 | 3119 | | |
3102 | 3120 | | |
3103 | 3121 | | |
| |||
3114 | 3132 | | |
3115 | 3133 | | |
3116 | 3134 | | |
3117 | | - | |
3118 | | - | |
| 3135 | + | |
| 3136 | + | |
3119 | 3137 | | |
3120 | 3138 | | |
3121 | 3139 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
11 | 10 | | |
12 | 11 | | |
13 | 12 | | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
1030 | 1030 | | |
1031 | 1031 | | |
1032 | 1032 | | |
1033 | | - | |
| 1033 | + | |
1034 | 1034 | | |
1035 | 1035 | | |
1036 | 1036 | | |
1037 | | - | |
1038 | | - | |
1039 | | - | |
1040 | | - | |
| 1037 | + | |
| 1038 | + | |
1041 | 1039 | | |
1042 | 1040 | | |
1043 | 1041 | | |
| |||
1120 | 1118 | | |
1121 | 1119 | | |
1122 | 1120 | | |
1123 | | - | |
1124 | | - | |
1125 | | - | |
1126 | | - | |
| 1121 | + | |
| 1122 | + | |
1127 | 1123 | | |
1128 | 1124 | | |
1129 | 1125 | | |
| |||
1153 | 1149 | | |
1154 | 1150 | | |
1155 | 1151 | | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | + | |
1156 | 1161 | | |
1157 | 1162 | | |
1158 | 1163 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
305 | 305 | | |
306 | 306 | | |
307 | 307 | | |
308 | | - | |
309 | | - | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
310 | 311 | | |
311 | 312 | | |
312 | 313 | | |
| |||
674 | 675 | | |
675 | 676 | | |
676 | 677 | | |
677 | | - | |
| 678 | + | |
678 | 679 | | |
679 | 680 | | |
680 | 681 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
232 | | - | |
| 232 | + | |
233 | 233 | | |
234 | 234 | | |
235 | 235 | | |
236 | | - | |
237 | | - | |
| 236 | + | |
| 237 | + | |
238 | 238 | | |
239 | 239 | | |
240 | 240 | | |
| |||
708 | 708 | | |
709 | 709 | | |
710 | 710 | | |
711 | | - | |
| 711 | + | |
712 | 712 | | |
713 | 713 | | |
714 | | - | |
| 714 | + | |
715 | 715 | | |
716 | 716 | | |
717 | 717 | | |
| |||
809 | 809 | | |
810 | 810 | | |
811 | 811 | | |
812 | | - | |
| 812 | + | |
813 | 813 | | |
814 | 814 | | |
815 | 815 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | 12 | | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
983 | 983 | | |
984 | 984 | | |
985 | 985 | | |
986 | | - | |
987 | | - | |
| 986 | + | |
| 987 | + | |
988 | 988 | | |
989 | 989 | | |
990 | 990 | | |
991 | 991 | | |
992 | 992 | | |
993 | | - | |
| 993 | + | |
994 | 994 | | |
995 | 995 | | |
996 | 996 | | |
| |||
1259 | 1259 | | |
1260 | 1260 | | |
1261 | 1261 | | |
1262 | | - | |
1263 | | - | |
1264 | | - | |
1265 | | - | |
1266 | | - | |
1267 | | - | |
1268 | | - | |
| 1262 | + | |
| 1263 | + | |
| 1264 | + | |
| 1265 | + | |
| 1266 | + | |
1269 | 1267 | | |
1270 | 1268 | | |
1271 | 1269 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
485 | 485 | | |
486 | 486 | | |
487 | 487 | | |
488 | | - | |
| 488 | + | |
489 | 489 | | |
490 | 490 | | |
491 | | - | |
492 | | - | |
493 | | - | |
494 | | - | |
495 | | - | |
496 | | - | |
497 | | - | |
498 | | - | |
| 491 | + | |
499 | 492 | | |
500 | 493 | | |
501 | 494 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
156 | 157 | | |
157 | 158 | | |
158 | 159 | | |
159 | | - | |
| 160 | + | |
160 | 161 | | |
161 | 162 | | |
162 | 163 | | |
| |||
167 | 168 | | |
168 | 169 | | |
169 | 170 | | |
170 | | - | |
171 | | - | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
172 | 180 | | |
173 | 181 | | |
174 | 182 | | |
| |||
507 | 515 | | |
508 | 516 | | |
509 | 517 | | |
510 | | - | |
511 | | - | |
| 518 | + | |
| 519 | + | |
512 | 520 | | |
513 | 521 | | |
514 | 522 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
0 commit comments