File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
tests/fixtures/coverage-reports/merge Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 99 | merge::func:
1010 | 1| 1|fn func(x: i32) -> bool {
1111 | 2| 1| if x < 0 {
12- | 3| 1 | true
12+ | 3| 0 | true
1313 | 4| | } else {
14- | 5| 0 | false
14+ | 5| 1 | false
1515 | 6| | }
1616 | 7| 1|}
1717 ------------------
1818 | merge::func:
1919 | 1| 1|fn func(x: i32) -> bool {
2020 | 2| 1| if x < 0 {
21- | 3| 0 | true
21+ | 3| 1 | true
2222 | 4| | } else {
23- | 5| 1 | false
23+ | 5| 0 | false
2424 | 6| | }
2525 | 7| 1|}
2626 ------------------
3737 | 10| 1|fn test() {
3838 | 11| 1| #[cfg(feature = "a")]
3939 | 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));
4242 | 15| 1|}
4343 ------------------
4444 | merge::test:
4545 | 10| 1|fn test() {
4646 | 11| 1| #[cfg(feature = "a")]
4747 | 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));
5050 | 15| 1|}
5151 ------------------
You can’t perform that action at this time.
0 commit comments