summaryrefslogtreecommitdiffstats
path: root/tests/run-coverage/inner_items.coverage
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:35 +0000
commitd1b2d29528b7794b41e66fc2136e395a02f8529b (patch)
treea4a17504b260206dec3cf55b2dca82929a348ac2 /tests/run-coverage/inner_items.coverage
parentReleasing progress-linux version 1.72.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-d1b2d29528b7794b41e66fc2136e395a02f8529b.tar.xz
rustc-d1b2d29528b7794b41e66fc2136e395a02f8529b.zip
Merging upstream version 1.73.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/run-coverage/inner_items.coverage')
-rw-r--r--tests/run-coverage/inner_items.coverage114
1 files changed, 57 insertions, 57 deletions
diff --git a/tests/run-coverage/inner_items.coverage b/tests/run-coverage/inner_items.coverage
index 883254a09..65493bcd9 100644
--- a/tests/run-coverage/inner_items.coverage
+++ b/tests/run-coverage/inner_items.coverage
@@ -1,60 +1,60 @@
- 1| |#![allow(unused_assignments, unused_variables, dead_code)]
- 2| |
- 3| 1|fn main() {
- 4| 1| // Initialize test constants in a way that cannot be determined at compile time, to ensure
- 5| 1| // rustc and LLVM cannot optimize out statements (or coverage counters) downstream from
- 6| 1| // dependent conditions.
- 7| 1| let is_true = std::env::args().len() == 1;
- 8| 1|
- 9| 1| let mut countdown = 0;
- 10| 1| if is_true {
- 11| 1| countdown = 10;
- 12| 1| }
+ LL| |#![allow(unused_assignments, unused_variables, dead_code)]
+ LL| |
+ LL| 1|fn main() {
+ LL| 1| // Initialize test constants in a way that cannot be determined at compile time, to ensure
+ LL| 1| // rustc and LLVM cannot optimize out statements (or coverage counters) downstream from
+ LL| 1| // dependent conditions.
+ LL| 1| let is_true = std::env::args().len() == 1;
+ LL| 1|
+ LL| 1| let mut countdown = 0;
+ LL| 1| if is_true {
+ LL| 1| countdown = 10;
+ LL| 1| }
^0
- 13| |
- 14| | mod in_mod {
- 15| | const IN_MOD_CONST: u32 = 1000;
- 16| | }
- 17| |
- 18| 3| fn in_func(a: u32) {
- 19| 3| let b = 1;
- 20| 3| let c = a + b;
- 21| 3| println!("c = {}", c)
- 22| 3| }
- 23| |
- 24| | struct InStruct {
- 25| | in_struct_field: u32,
- 26| | }
- 27| |
- 28| | const IN_CONST: u32 = 1234;
- 29| |
- 30| | trait InTrait {
- 31| | fn trait_func(&mut self, incr: u32);
- 32| |
- 33| 1| fn default_trait_func(&mut self) {
- 34| 1| in_func(IN_CONST);
- 35| 1| self.trait_func(IN_CONST);
- 36| 1| }
- 37| | }
- 38| |
- 39| | impl InTrait for InStruct {
- 40| 1| fn trait_func(&mut self, incr: u32) {
- 41| 1| self.in_struct_field += incr;
- 42| 1| in_func(self.in_struct_field);
- 43| 1| }
- 44| | }
- 45| |
- 46| | type InType = String;
- 47| |
- 48| 1| if is_true {
- 49| 1| in_func(countdown);
- 50| 1| }
+ LL| |
+ LL| | mod in_mod {
+ LL| | const IN_MOD_CONST: u32 = 1000;
+ LL| | }
+ LL| |
+ LL| 3| fn in_func(a: u32) {
+ LL| 3| let b = 1;
+ LL| 3| let c = a + b;
+ LL| 3| println!("c = {}", c)
+ LL| 3| }
+ LL| |
+ LL| | struct InStruct {
+ LL| | in_struct_field: u32,
+ LL| | }
+ LL| |
+ LL| | const IN_CONST: u32 = 1234;
+ LL| |
+ LL| | trait InTrait {
+ LL| | fn trait_func(&mut self, incr: u32);
+ LL| |
+ LL| 1| fn default_trait_func(&mut self) {
+ LL| 1| in_func(IN_CONST);
+ LL| 1| self.trait_func(IN_CONST);
+ LL| 1| }
+ LL| | }
+ LL| |
+ LL| | impl InTrait for InStruct {
+ LL| 1| fn trait_func(&mut self, incr: u32) {
+ LL| 1| self.in_struct_field += incr;
+ LL| 1| in_func(self.in_struct_field);
+ LL| 1| }
+ LL| | }
+ LL| |
+ LL| | type InType = String;
+ LL| |
+ LL| 1| if is_true {
+ LL| 1| in_func(countdown);
+ LL| 1| }
^0
- 51| |
- 52| 1| let mut val = InStruct {
- 53| 1| in_struct_field: 101,
- 54| 1| };
- 55| 1|
- 56| 1| val.default_trait_func();
- 57| 1|}
+ LL| |
+ LL| 1| let mut val = InStruct {
+ LL| 1| in_struct_field: 101,
+ LL| 1| };
+ LL| 1|
+ LL| 1| val.default_trait_func();
+ LL| 1|}