summaryrefslogtreecommitdiffstats
path: root/tests/run-coverage/continue.coverage
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-coverage/continue.coverage')
-rw-r--r--tests/run-coverage/continue.coverage138
1 files changed, 69 insertions, 69 deletions
diff --git a/tests/run-coverage/continue.coverage b/tests/run-coverage/continue.coverage
index bf42924b1..4916cac00 100644
--- a/tests/run-coverage/continue.coverage
+++ b/tests/run-coverage/continue.coverage
@@ -1,70 +1,70 @@
- 1| |#![allow(unused_assignments, unused_variables)]
- 2| |
- 3| 1|fn main() {
- 4| 1| let is_true = std::env::args().len() == 1;
- 5| 1|
- 6| 1| let mut x = 0;
- 7| 11| for _ in 0..10 {
- 8| 10| match is_true {
- 9| | true => {
- 10| 10| continue;
- 11| | }
- 12| 0| _ => {
- 13| 0| x = 1;
- 14| 0| }
- 15| 0| }
- 16| 0| x = 3;
- 17| | }
- 18| 11| for _ in 0..10 {
- 19| 10| match is_true {
- 20| 0| false => {
- 21| 0| x = 1;
- 22| 0| }
- 23| | _ => {
- 24| 10| continue;
- 25| | }
- 26| | }
- 27| 0| x = 3;
- 28| | }
- 29| 11| for _ in 0..10 {
- 30| 10| match is_true {
- 31| 10| true => {
- 32| 10| x = 1;
- 33| 10| }
- 34| | _ => {
- 35| 0| continue;
- 36| | }
- 37| | }
- 38| 10| x = 3;
- 39| | }
- 40| 11| for _ in 0..10 {
- 41| 10| if is_true {
- 42| 10| continue;
- 43| 0| }
- 44| 0| x = 3;
- 45| | }
- 46| 11| for _ in 0..10 {
- 47| 10| match is_true {
- 48| 0| false => {
- 49| 0| x = 1;
- 50| 0| }
- 51| 10| _ => {
- 52| 10| let _ = x;
- 53| 10| }
- 54| | }
- 55| 10| x = 3;
- 56| | }
- 57| 1| for _ in 0..10 {
- 58| 1| match is_true {
- 59| 0| false => {
- 60| 0| x = 1;
- 61| 0| }
- 62| | _ => {
- 63| 1| break;
- 64| | }
- 65| | }
- 66| 0| x = 3;
- 67| | }
- 68| 1| let _ = x;
- 69| 1|}
+ LL| |#![allow(unused_assignments, unused_variables)]
+ LL| |
+ LL| 1|fn main() {
+ LL| 1| let is_true = std::env::args().len() == 1;
+ LL| 1|
+ LL| 1| let mut x = 0;
+ LL| 11| for _ in 0..10 {
+ LL| 10| match is_true {
+ LL| | true => {
+ LL| 10| continue;
+ LL| | }
+ LL| 0| _ => {
+ LL| 0| x = 1;
+ LL| 0| }
+ LL| 0| }
+ LL| 0| x = 3;
+ LL| | }
+ LL| 11| for _ in 0..10 {
+ LL| 10| match is_true {
+ LL| 0| false => {
+ LL| 0| x = 1;
+ LL| 0| }
+ LL| | _ => {
+ LL| 10| continue;
+ LL| | }
+ LL| | }
+ LL| 0| x = 3;
+ LL| | }
+ LL| 11| for _ in 0..10 {
+ LL| 10| match is_true {
+ LL| 10| true => {
+ LL| 10| x = 1;
+ LL| 10| }
+ LL| | _ => {
+ LL| 0| continue;
+ LL| | }
+ LL| | }
+ LL| 10| x = 3;
+ LL| | }
+ LL| 11| for _ in 0..10 {
+ LL| 10| if is_true {
+ LL| 10| continue;
+ LL| 0| }
+ LL| 0| x = 3;
+ LL| | }
+ LL| 11| for _ in 0..10 {
+ LL| 10| match is_true {
+ LL| 0| false => {
+ LL| 0| x = 1;
+ LL| 0| }
+ LL| 10| _ => {
+ LL| 10| let _ = x;
+ LL| 10| }
+ LL| | }
+ LL| 10| x = 3;
+ LL| | }
+ LL| 1| for _ in 0..10 {
+ LL| 1| match is_true {
+ LL| 0| false => {
+ LL| 0| x = 1;
+ LL| 0| }
+ LL| | _ => {
+ LL| 1| break;
+ LL| | }
+ LL| | }
+ LL| 0| x = 3;
+ LL| | }
+ LL| 1| let _ = x;
+ LL| 1|}