This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit e8e1b32
committed
Auto merge of rust-lang#87923 - JohnTitor:rollup-id54fyz, r=JohnTitor
Rollup of 14 pull requests
Successful merges:
- rust-lang#86840 (Constify implementations of `(Try)From` for int types)
- rust-lang#87582 (Implement `Printer` for `&mut SymbolPrinter`)
- rust-lang#87636 (Added the `Option::unzip()` method)
- rust-lang#87700 (Expand explanation of E0530)
- rust-lang#87811 (Do not ICE on HIR based WF check when involving lifetimes)
- rust-lang#87848 (removed references to parent/child from std::thread documentation)
- rust-lang#87854 (correctly handle enum variants in `opt_const_param_of`)
- rust-lang#87861 (Fix heading colours in Ayu theme)
- rust-lang#87865 (Clarify terms in rustdoc book)
- rust-lang#87876 (add `windows` count test)
- rust-lang#87880 (Remove duplicate trait bounds in `rustc_data_structures::graph`)
- rust-lang#87881 (Proper table row formatting in platform support)
- rust-lang#87889 (Use smaller spans when suggesting method call disambiguation)
- rust-lang#87895 (typeck: don't suggest inaccessible fields in struct literals and suggest ignoring inaccessible fields in struct patterns)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
32 files changed
+399
-132
lines changed- compiler
- rustc_data_structures/src/graph
- rustc_error_codes/src/error_codes
- rustc_symbol_mangling/src
- rustc_trait_selection/src/traits/error_reporting
- rustc_typeck/src
- check
- method
- collect
- library
- core
- src
- convert
- tests
- num
- std/src/thread
- src
- doc
- rustc/src
- rustdoc/src
- librustdoc/html/static/css/themes
- test/ui
- associated-consts
- const-generics
- error-codes
- issues
- methods
- span
- typeck
- wf
32 files changed
+399
-132
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
| 63 | + | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
| 69 | + | |
75 | 70 | | |
76 | 71 | | |
77 | 72 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
4 | 26 | | |
5 | 27 | | |
6 | 28 | | |
7 | 29 | | |
8 | | - | |
| 30 | + | |
9 | 31 | | |
10 | | - | |
| 32 | + | |
11 | 33 | | |
12 | 34 | | |
13 | 35 | | |
14 | | - | |
15 | | - | |
| 36 | + | |
16 | 37 | | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
| 38 | + | |
| 39 | + | |
22 | 40 | | |
23 | | - | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
24 | 48 | | |
25 | 49 | | |
26 | | - | |
| 50 | + | |
27 | 51 | | |
28 | | - | |
| 52 | + | |
29 | 53 | | |
30 | | - | |
| 54 | + | |
| 55 | + | |
31 | 56 | | |
32 | 57 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
| 59 | + | |
59 | 60 | | |
60 | 61 | | |
61 | 62 | | |
| |||
198 | 199 | | |
199 | 200 | | |
200 | 201 | | |
201 | | - | |
| 202 | + | |
202 | 203 | | |
203 | 204 | | |
204 | 205 | | |
| |||
242 | 243 | | |
243 | 244 | | |
244 | 245 | | |
245 | | - | |
| 246 | + | |
246 | 247 | | |
247 | 248 | | |
248 | 249 | | |
| |||
253 | 254 | | |
254 | 255 | | |
255 | 256 | | |
256 | | - | |
| 257 | + | |
257 | 258 | | |
258 | 259 | | |
259 | 260 | | |
| |||
344 | 345 | | |
345 | 346 | | |
346 | 347 | | |
347 | | - | |
| 348 | + | |
348 | 349 | | |
349 | 350 | | |
350 | 351 | | |
| |||
Lines changed: 4 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
245 | 245 | | |
246 | 246 | | |
247 | 247 | | |
248 | | - | |
249 | | - | |
250 | | - | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
251 | 252 | | |
252 | 253 | | |
253 | 254 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1313 | 1313 | | |
1314 | 1314 | | |
1315 | 1315 | | |
1316 | | - | |
1317 | | - | |
1318 | | - | |
1319 | | - | |
1320 | | - | |
1321 | | - | |
| 1316 | + | |
| 1317 | + | |
| 1318 | + | |
1322 | 1319 | | |
1323 | | - | |
1324 | | - | |
| 1320 | + | |
| 1321 | + | |
1325 | 1322 | | |
1326 | 1323 | | |
1327 | 1324 | | |
| |||
1398 | 1395 | | |
1399 | 1396 | | |
1400 | 1397 | | |
1401 | | - | |
| 1398 | + | |
1402 | 1399 | | |
1403 | 1400 | | |
1404 | 1401 | | |
| |||
1409 | 1406 | | |
1410 | 1407 | | |
1411 | 1408 | | |
1412 | | - | |
| 1409 | + | |
1413 | 1410 | | |
1414 | 1411 | | |
1415 | 1412 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1695 | 1695 | | |
1696 | 1696 | | |
1697 | 1697 | | |
1698 | | - | |
1699 | | - | |
| 1698 | + | |
| 1699 | + | |
1700 | 1700 | | |
1701 | 1701 | | |
1702 | 1702 | | |
| |||
1710 | 1710 | | |
1711 | 1711 | | |
1712 | 1712 | | |
1713 | | - | |
| 1713 | + | |
| 1714 | + | |
1714 | 1715 | | |
1715 | | - | |
| 1716 | + | |
1716 | 1717 | | |
1717 | | - | |
1718 | | - | |
| 1718 | + | |
1719 | 1719 | | |
1720 | 1720 | | |
1721 | 1721 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1250 | 1250 | | |
1251 | 1251 | | |
1252 | 1252 | | |
1253 | | - | |
1254 | | - | |
1255 | | - | |
| 1253 | + | |
| 1254 | + | |
| 1255 | + | |
| 1256 | + | |
| 1257 | + | |
| 1258 | + | |
| 1259 | + | |
1256 | 1260 | | |
1257 | | - | |
| 1261 | + | |
1258 | 1262 | | |
1259 | 1263 | | |
1260 | | - | |
1261 | | - | |
| 1264 | + | |
| 1265 | + | |
| 1266 | + | |
| 1267 | + | |
| 1268 | + | |
| 1269 | + | |
1262 | 1270 | | |
1263 | 1271 | | |
1264 | 1272 | | |
| |||
1583 | 1591 | | |
1584 | 1592 | | |
1585 | 1593 | | |
| 1594 | + | |
1586 | 1595 | | |
1587 | 1596 | | |
| 1597 | + | |
1588 | 1598 | | |
1589 | | - | |
| 1599 | + | |
1590 | 1600 | | |
1591 | 1601 | | |
1592 | 1602 | | |
1593 | 1603 | | |
1594 | 1604 | | |
1595 | 1605 | | |
1596 | | - | |
| 1606 | + | |
1597 | 1607 | | |
1598 | 1608 | | |
1599 | 1609 | | |
| |||
1624 | 1634 | | |
1625 | 1635 | | |
1626 | 1636 | | |
1627 | | - | |
| 1637 | + | |
1628 | 1638 | | |
| 1639 | + | |
1629 | 1640 | | |
1630 | 1641 | | |
1631 | | - | |
| 1642 | + | |
1632 | 1643 | | |
1633 | 1644 | | |
1634 | 1645 | | |
1635 | 1646 | | |
1636 | 1647 | | |
1637 | 1648 | | |
| 1649 | + | |
1638 | 1650 | | |
1639 | 1651 | | |
1640 | 1652 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
190 | 190 | | |
191 | 191 | | |
192 | 192 | | |
| 193 | + | |
193 | 194 | | |
194 | | - | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
195 | 199 | | |
196 | 200 | | |
197 | 201 | | |
| |||
200 | 204 | | |
201 | 205 | | |
202 | 206 | | |
203 | | - | |
204 | 207 | | |
205 | 208 | | |
206 | 209 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
| 49 | + | |
49 | 50 | | |
50 | 51 | | |
51 | 52 | | |
| |||
172 | 173 | | |
173 | 174 | | |
174 | 175 | | |
175 | | - | |
| 176 | + | |
| 177 | + | |
176 | 178 | | |
177 | 179 | | |
178 | 180 | | |
| |||
190 | 192 | | |
191 | 193 | | |
192 | 194 | | |
193 | | - | |
| 195 | + | |
| 196 | + | |
194 | 197 | | |
195 | 198 | | |
196 | 199 | | |
| |||
212 | 215 | | |
213 | 216 | | |
214 | 217 | | |
215 | | - | |
| 218 | + | |
| 219 | + | |
216 | 220 | | |
217 | 221 | | |
218 | 222 | | |
| |||
234 | 238 | | |
235 | 239 | | |
236 | 240 | | |
237 | | - | |
| 241 | + | |
| 242 | + | |
238 | 243 | | |
239 | 244 | | |
240 | 245 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
99 | 99 | | |
100 | 100 | | |
101 | 101 | | |
| 102 | + | |
102 | 103 | | |
103 | 104 | | |
104 | 105 | | |
| |||
0 commit comments