Skip to content

Commit 1ff0c8f

Browse files
authored
Upgrade toolchain to 2025-04-03 (#3988)
Culprit PR: rust-lang/rust#139102 Resolves #3986 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
1 parent 7a126c2 commit 1ff0c8f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# SPDX-License-Identifier: Apache-2.0 OR MIT
33

44
[toolchain]
5-
channel = "nightly-2025-04-02"
5+
channel = "nightly-2025-04-03"
66
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]

tests/coverage/abort/expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
14| 1| }\
1515
15| 1| if i == 2 {\
1616
16| | // This should never happen.\
17-
17| 0| ```process::exit(1)''';\
17+
17| 0| ```process::exit'''(1);\
1818
18| 1| } \
1919
19| | }\
2020
20| 0| ```assert!'''(false, ```"This is unreachable"''');\

tests/coverage/known_issues/variant/expected

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
16| 1| fn print_direction(dir: Direction) {\
1717
17| | // For some reason, `dir`'s span is reported as `UNCOVERED` too\
1818
18| 0| match ```dir''' {\
19-
19| 0| Direction::Up => ```println!("Going up!")''',\
20-
20| 0| Direction::Down => ```println!("Going down!")''',\
19+
19| 0| Direction::Up => ```println!("Going up!"'''),\
20+
20| 0| Direction::Down => ```println!("Going down!"'''),\
2121
21| 1| Direction::Left => println!("Going left!"),\
22-
22| 0| Direction::Right if 1 == ```1 => println!("Going right!")''',\
22+
22| 0| Direction::Right if 1 == ```1 => println!("Going right!"'''),\
2323
23| | // This part is unreachable since we cover all variants in the match.\
24-
24| 0| _ => ```println!("Not going anywhere!")''',\
24+
24| 0| _ => ```println!("Not going anywhere!"'''),\
2525
25| | }\
2626
26| | }\
2727
27| | \

0 commit comments

Comments
 (0)