Skip to content

Commit 75af3c5

Browse files
committedFeb 15, 2024
coverage: Regression test for a span extraction inconsistency
1 parent a447249 commit 75af3c5

File tree

3 files changed

+93
-0
lines changed

3 files changed

+93
-0
lines changed
 
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Function name: closure_unit_return::explicit_unit
2+
Raw bytes (14): 0x[01, 01, 00, 02, 01, 07, 01, 01, 10, 01, 05, 05, 02, 02]
3+
Number of files: 1
4+
- file 0 => global file 1
5+
Number of expressions: 0
6+
Number of file 0 mappings: 2
7+
- Code(Counter(0)) at (prev + 7, 1) to (start + 1, 16)
8+
- Code(Counter(0)) at (prev + 5, 5) to (start + 2, 2)
9+
10+
Function name: closure_unit_return::explicit_unit::{closure#0} (unused)
11+
Raw bytes (9): 0x[01, 01, 00, 01, 00, 08, 16, 02, 06]
12+
Number of files: 1
13+
- file 0 => global file 1
14+
Number of expressions: 0
15+
Number of file 0 mappings: 1
16+
- Code(Zero) at (prev + 8, 22) to (start + 2, 6)
17+
18+
Function name: closure_unit_return::implicit_unit
19+
Raw bytes (14): 0x[01, 01, 00, 02, 01, 10, 01, 01, 13, 01, 03, 06, 04, 02]
20+
Number of files: 1
21+
- file 0 => global file 1
22+
Number of expressions: 0
23+
Number of file 0 mappings: 2
24+
- Code(Counter(0)) at (prev + 16, 1) to (start + 1, 19)
25+
- Code(Counter(0)) at (prev + 3, 6) to (start + 4, 2)
26+
27+
Function name: closure_unit_return::implicit_unit::{closure#0} (unused)
28+
Raw bytes (9): 0x[01, 01, 00, 01, 00, 11, 16, 02, 06]
29+
Number of files: 1
30+
- file 0 => global file 1
31+
Number of expressions: 0
32+
Number of file 0 mappings: 1
33+
- Code(Zero) at (prev + 17, 22) to (start + 2, 6)
34+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
LL| |#![feature(coverage_attribute)]
2+
LL| |// edition: 2021
3+
LL| |
4+
LL| |// Regression test for an inconsistency between functions that return the value
5+
LL| |// of their trailing expression, and functions that implicitly return `()`.
6+
LL| |
7+
LL| 1|fn explicit_unit() {
8+
LL| 1| let closure = || {
9+
LL| 0| ();
10+
LL| 0| };
11+
LL| |
12+
LL| 1| drop(closure);
13+
LL| 1| () // explicit return of trailing value
14+
LL| 1|}
15+
LL| |
16+
LL| 1|fn implicit_unit() {
17+
LL| 1| let closure = || {
18+
LL| 0| ();
19+
LL| 1| };
20+
LL| 1|
21+
LL| 1| drop(closure);
22+
LL| 1| // implicit return of `()`
23+
LL| 1|}
24+
LL| |
25+
LL| |#[coverage(off)]
26+
LL| |fn main() {
27+
LL| | explicit_unit();
28+
LL| | implicit_unit();
29+
LL| |}
30+

‎tests/coverage/closure_unit_return.rs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#![feature(coverage_attribute)]
2+
// edition: 2021
3+
4+
// Regression test for an inconsistency between functions that return the value
5+
// of their trailing expression, and functions that implicitly return `()`.
6+
7+
fn explicit_unit() {
8+
let closure = || {
9+
();
10+
};
11+
12+
drop(closure);
13+
() // explicit return of trailing value
14+
}
15+
16+
fn implicit_unit() {
17+
let closure = || {
18+
();
19+
};
20+
21+
drop(closure);
22+
// implicit return of `()`
23+
}
24+
25+
#[coverage(off)]
26+
fn main() {
27+
explicit_unit();
28+
implicit_unit();
29+
}

0 commit comments

Comments
 (0)