Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
400e687
Bump unicode_data to version 17.0.0
Marcondiro Sep 8, 2025
83a99aa
Bump unicode printable to version 17.0.0
Marcondiro Sep 9, 2025
d834935
Fix atan2 inaccuracy in documentation
DimitriiTrater Sep 11, 2025
d615d2f
std: call WinSock cleanup function directly instead of through its re…
joboet Sep 30, 2025
eba1416
std: improve internal socket functions
joboet Sep 30, 2025
aa1263e
std: add missing unsafe blocks
joboet Sep 30, 2025
3534594
std: merge address family computation
joboet Sep 30, 2025
4735c21
Fix diagnostics str::replace comma to bar
A4-Tacks Jul 2, 2025
a08228d
bless tests
karolzwolak Sep 27, 2025
934ad74
regression test
karolzwolak Oct 1, 2025
08b4641
add CloneFromCell and Cell::get_cloned
Qelxiros Aug 20, 2025
5a8f963
fix wording; we're replacing coma with a bar
karolzwolak Oct 2, 2025
d1d7b94
bring back plural 'alternatives' in suggestion message
karolzwolak Oct 2, 2025
fab9906
test: Add regression test for ICE when projecting associated types th…
reddevilmidzy Oct 2, 2025
99550fb
Return to needs-llvm-components being info-only
workingjubilee Oct 2, 2025
a5c9030
Extract common logic for iterating over features
fee1-dead Oct 2, 2025
3d5f54a
Respect `-Z` unstable options in `rustdoc --test`
Urgau Oct 3, 2025
1485e78
Document fully-qualified syntax in `as`' keyword doc
fpdotmonkey Jun 18, 2025
e914a1a
Respect `--error-format` in `rustdoc --test`
Urgau Oct 3, 2025
c1443e2
Add regression test for `-Zcrate-attr` in `rustdoc --test`
Urgau Oct 3, 2025
3f9c493
Add xtensa arch to object file creation
MabezDev Oct 3, 2025
a9ab29c
add mem::conjure_zst
Qelxiros Sep 12, 2025
55aeb17
Do not assert that a change in global cache only happens when concurrent
jackh726 Oct 2, 2025
76caf12
Rollup merge of #142670 - fpdotmonkey:doc/as-fully-qualified-syntax, …
Zalathar Oct 4, 2025
d507f9e
Rollup merge of #145685 - Qelxiros:cell_get_cloned, r=programmerjake,…
Zalathar Oct 4, 2025
ba42eb6
Rollup merge of #146330 - Marcondiro:unicode-17, r=Manishearth
Zalathar Oct 4, 2025
b3c9cd3
Rollup merge of #146451 - DimitriiTrater:atan2_correctness_docs, r=tg…
Zalathar Oct 4, 2025
08e846d
Rollup merge of #146479 - Qelxiros:mem_conjure_zst, r=scottmcm,tgross35
Zalathar Oct 4, 2025
9de7576
Rollup merge of #147190 - joboet:sys-net-cleanup, r=hkBst,tgross35
Zalathar Oct 4, 2025
329692e
Rollup merge of #147245 - karolzwolak:only-replace-intended-bar-not-a…
Zalathar Oct 4, 2025
ce8bcbe
Rollup merge of #147251 - jackh726:global-cache-non-concurrent-change…
Zalathar Oct 4, 2025
088c176
Rollup merge of #147269 - reddevilmidzy:ice-fix, r=petrochenkov
Zalathar Oct 4, 2025
8641f87
Rollup merge of #147277 - fee1-dead-contrib:featiter, r=Zalathar
Zalathar Oct 4, 2025
1706a32
Rollup merge of #147280 - workingjubilee:you-can-put-your-gcc-in-my-l…
Zalathar Oct 4, 2025
ed7257b
Rollup merge of #147292 - Urgau:rustdoc-test-unstable_opts, r=fmease
Zalathar Oct 4, 2025
5ac4386
Rollup merge of #147300 - esp-rs:xtensa-meta, r=saethlin
Zalathar Oct 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix wording; we're replacing coma with a bar
  • Loading branch information
karolzwolak committed Oct 2, 2025
commit 5a8f963426c72c5bd306b2620a6c148b720217d0
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//@ run-rustfix

// Regression test for issue #143330.
// Ensure we suggest to replace only the intended bar with a comma, not all bars in the pattern.
// Ensure we suggest to replace only the intended coma with a bar, not all commas in the pattern.

fn main() {
struct Foo { x: i32, ch: char }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//@ run-rustfix

// Regression test for issue #143330.
// Ensure we suggest to replace only the intended bar with a comma, not all bars in the pattern.
// Ensure we suggest to replace only the intended coma with a bar, not all commas in the pattern.

fn main() {
struct Foo { x: i32, ch: char }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: unexpected `,` in pattern
--> $DIR/only-replace-intended-bar-not-all-in-pattern.rs:12:30
--> $DIR/only-replace-intended-coma-not-all-in-pattern.rs:12:30
|
LL | Foo { x: 2, ch: ',' }, Foo { x: 3, ch: '@' } => (),
| ^
Expand Down