Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[toolchain]
channel = "nightly-2025-04-02"
channel = "nightly-2025-04-03"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]
2 changes: 1 addition & 1 deletion tests/coverage/abort/expected
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
14| 1| }\
15| 1| if i == 2 {\
16| | // This should never happen.\
17| 0| ```process::exit(1)''';\
17| 0| ```process::exit'''(1);\
18| 1| } \
19| | }\
20| 0| ```assert!'''(false, ```"This is unreachable"''');\
Expand Down
8 changes: 4 additions & 4 deletions tests/coverage/known_issues/variant/expected
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
16| 1| fn print_direction(dir: Direction) {\
17| | // For some reason, `dir`'s span is reported as `UNCOVERED` too\
18| 0| match ```dir''' {\
19| 0| Direction::Up => ```println!("Going up!")''',\
20| 0| Direction::Down => ```println!("Going down!")''',\
19| 0| Direction::Up => ```println!("Going up!"'''),\
20| 0| Direction::Down => ```println!("Going down!"'''),\
21| 1| Direction::Left => println!("Going left!"),\
22| 0| Direction::Right if 1 == ```1 => println!("Going right!")''',\
22| 0| Direction::Right if 1 == ```1 => println!("Going right!"'''),\
23| | // This part is unreachable since we cover all variants in the match.\
24| 0| _ => ```println!("Not going anywhere!")''',\
24| 0| _ => ```println!("Not going anywhere!"'''),\
25| | }\
26| | }\
27| | \
Expand Down
Loading