Commit cec754f 1 parent a853ee2 commit cec754f Copy full SHA for cec754f
File tree 1 file changed +8
-8
lines changed
tests/fixtures/coverage-reports/merge
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 9
9
| merge::func:
10
10
| 1| 1|fn func(x: i32) -> bool {
11
11
| 2| 1| if x < 0 {
12
- | 3| 1 | true
12
+ | 3| 0 | true
13
13
| 4| | } else {
14
- | 5| 0 | false
14
+ | 5| 1 | false
15
15
| 6| | }
16
16
| 7| 1|}
17
17
------------------
18
18
| merge::func:
19
19
| 1| 1|fn func(x: i32) -> bool {
20
20
| 2| 1| if x < 0 {
21
- | 3| 0 | true
21
+ | 3| 1 | true
22
22
| 4| | } else {
23
- | 5| 1 | false
23
+ | 5| 0 | false
24
24
| 6| | }
25
25
| 7| 1|}
26
26
------------------
37
37
| 10| 1|fn test() {
38
38
| 11| 1| #[cfg(feature = "a")]
39
39
| 12| 1| assert!(!func(1));
40
- | 13| 1 | #[cfg(feature = "b")]
41
- | 14| 1 | assert!(func(-1));
40
+ | 13| | #[cfg(feature = "b")]
41
+ | 14| | assert!(func(-1));
42
42
| 15| 1|}
43
43
------------------
44
44
| merge::test:
45
45
| 10| 1|fn test() {
46
46
| 11| 1| #[cfg(feature = "a")]
47
47
| 12| 1| assert!(!func(1));
48
- | 13| | #[cfg(feature = "b")]
49
- | 14| | assert!(func(-1));
48
+ | 13| 1 | #[cfg(feature = "b")]
49
+ | 14| 1 | assert!(func(-1));
50
50
| 15| 1|}
51
51
------------------
You can’t perform that action at this time.
0 commit comments