This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit f820b75
committed
Auto merge of rust-lang#139525 - Zalathar:rollup-5t5xsrw, r=Zalathar
Rollup of 10 pull requests
Successful merges:
- rust-lang#138676 (Implement overflow for infinite implied lifetime bounds)
- rust-lang#139024 (Make error message for missing fields with `..` and without `..` more consistent)
- rust-lang#139098 (Tell LLVM about impossible niche tags)
- rust-lang#139124 (compiler: report error when trait object type param reference self)
- rust-lang#139321 (Update to new rinja version (askama))
- rust-lang#139346 (Don't construct preds w escaping bound vars in `diagnostic_hir_wf_check`)
- rust-lang#139386 (make it possible to use stage0 libtest on compiletest)
- rust-lang#139421 (Fix trait upcasting to dyn type with no principal when there are projections)
- rust-lang#139464 (Allow for reparsing failure when reparsing a pasted metavar.)
- rust-lang#139490 (Update some comment/docs related to "extern intrinsic" removal)
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
52 files changed
+1003
-184
lines changed- compiler
- rustc_codegen_ssa/src/mir
- rustc_hir_analysis
- src
- hir_ty_lowering
- outlives
- rustc_hir_typeck/src
- rustc_parse/src/parser
- rustc_trait_selection/src/traits/select
- library/core/src/intrinsics
- src
- bootstrap
- defaults
- src
- core
- build_steps
- config
- utils
- ci
- citool/tests
- docker/host-x86_64
- mingw-check
- x86_64-gnu-tools
- github-actions
- doc/unstable-book/src/language-features
- librustdoc
- html
- render
- templates
- tools
- generate-copyright
- src
- rust-analyzer/crates/ide/src/hover
- tests
- codegen/enum
- ui
- dyn-compatibility
- implied-bounds
- macros
- structs/default-field-values
- traits
- non_lifetime_binders
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
52 files changed
+1003
-184
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
186 | 186 | | |
187 | 187 | | |
188 | 188 | | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
189 | 231 | | |
190 | 232 | | |
191 | 233 | | |
| |||
1345 | 1387 | | |
1346 | 1388 | | |
1347 | 1389 | | |
| 1390 | + | |
1348 | 1391 | | |
1349 | | - | |
1350 | 1392 | | |
1351 | 1393 | | |
1352 | 1394 | | |
| |||
3069 | 3111 | | |
3070 | 3112 | | |
3071 | 3113 | | |
3072 | | - | |
3073 | 3114 | | |
3074 | | - | |
3075 | 3115 | | |
3076 | 3116 | | |
3077 | 3117 | | |
| |||
4628 | 4668 | | |
4629 | 4669 | | |
4630 | 4670 | | |
| 4671 | + | |
4631 | 4672 | | |
4632 | 4673 | | |
4633 | 4674 | | |
| |||
4636 | 4677 | | |
4637 | 4678 | | |
4638 | 4679 | | |
4639 | | - | |
4640 | 4680 | | |
4641 | 4681 | | |
4642 | 4682 | | |
| |||
5426 | 5466 | | |
5427 | 5467 | | |
5428 | 5468 | | |
5429 | | - | |
| 5469 | + | |
5430 | 5470 | | |
5431 | 5471 | | |
5432 | 5472 | | |
| |||
6437 | 6477 | | |
6438 | 6478 | | |
6439 | 6479 | | |
| 6480 | + | |
| 6481 | + | |
| 6482 | + | |
| 6483 | + | |
| 6484 | + | |
| 6485 | + | |
| 6486 | + | |
| 6487 | + | |
| 6488 | + | |
6440 | 6489 | | |
6441 | 6490 | | |
6442 | 6491 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
442 | 442 | | |
443 | 443 | | |
444 | 444 | | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
445 | 448 | | |
446 | 449 | | |
447 | 450 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| |||
496 | 497 | | |
497 | 498 | | |
498 | 499 | | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
499 | 512 | | |
500 | 513 | | |
501 | 514 | | |
| |||
537 | 550 | | |
538 | 551 | | |
539 | 552 | | |
| 553 | + | |
| 554 | + | |
| 555 | + | |
| 556 | + | |
| 557 | + | |
| 558 | + | |
| 559 | + | |
| 560 | + | |
| 561 | + | |
| 562 | + | |
| 563 | + | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | + | |
540 | 568 | | |
541 | 569 | | |
542 | 570 | | |
| |||
553 | 581 | | |
554 | 582 | | |
555 | 583 | | |
556 | | - | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
557 | 587 | | |
558 | 588 | | |
559 | 589 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
486 | 486 | | |
487 | 487 | | |
488 | 488 | | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
489 | 492 | | |
490 | 493 | | |
491 | 494 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1707 | 1707 | | |
1708 | 1708 | | |
1709 | 1709 | | |
| 1710 | + | |
| 1711 | + | |
| 1712 | + | |
| 1713 | + | |
| 1714 | + | |
| 1715 | + | |
| 1716 | + | |
| 1717 | + | |
Lines changed: 14 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| |||
125 | 126 | | |
126 | 127 | | |
127 | 128 | | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
128 | 142 | | |
129 | 143 | | |
130 | 144 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
80 | 89 | | |
81 | 90 | | |
82 | 91 | | |
| |||
Lines changed: 17 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
| 27 | + | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
86 | | - | |
| 86 | + | |
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
| 93 | + | |
93 | 94 | | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
94 | 107 | | |
95 | 108 | | |
96 | 109 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2205 | 2205 | | |
2206 | 2206 | | |
2207 | 2207 | | |
2208 | | - | |
2209 | | - | |
| 2208 | + | |
| 2209 | + | |
| 2210 | + | |
| 2211 | + | |
| 2212 | + | |
| 2213 | + | |
2210 | 2214 | | |
2211 | 2215 | | |
2212 | 2216 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
782 | 782 | | |
783 | 783 | | |
784 | 784 | | |
785 | | - | |
786 | | - | |
787 | | - | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
788 | 795 | | |
789 | 796 | | |
790 | 797 | | |
| |||
793 | 800 | | |
794 | 801 | | |
795 | 802 | | |
796 | | - | |
| 803 | + | |
| 804 | + | |
| 805 | + | |
| 806 | + | |
| 807 | + | |
| 808 | + | |
797 | 809 | | |
798 | 810 | | |
799 | 811 | | |
| |||
0 commit comments