rust/tests/coverage/loop_break_value.coverage
Zalathar 4d5a1acebf coverage: Only merge adjacent coverage spans
This also removes some manipulation of the function signature span that only
made sense in the context of merging non-adjacent spans.
2025-05-06 20:42:25 +10:00

16 lines
392 B
Plaintext

LL| |#![allow(unused_assignments, unused_variables)]
LL| |
LL| |#[rustfmt::skip]
LL| 1|fn main() {
LL| 1| let result
LL| | =
LL| 1| loop
LL| 1| {
LL| 1| break
LL| 1| 10
LL| 1| ;
LL| 1| }
LL| | ;
LL| 1|}