summaryrefslogtreecommitdiffstats
path: root/tests/run-coverage/issue-83601.coverage
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-coverage/issue-83601.coverage')
-rw-r--r--tests/run-coverage/issue-83601.coverage28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/run-coverage/issue-83601.coverage b/tests/run-coverage/issue-83601.coverage
index 25c74ab2e..7995332ca 100644
--- a/tests/run-coverage/issue-83601.coverage
+++ b/tests/run-coverage/issue-83601.coverage
@@ -1,16 +1,16 @@
- 1| |// Shows that rust-lang/rust/83601 is resolved
- 2| |
- 3| 3|#[derive(Debug, PartialEq, Eq)]
+ LL| |// Shows that rust-lang/rust/83601 is resolved
+ LL| |
+ LL| 3|#[derive(Debug, PartialEq, Eq)]
^2
- 4| |struct Foo(u32);
- 5| |
- 6| 1|fn main() {
- 7| 1| let bar = Foo(1);
- 8| 1| assert_eq!(bar, Foo(1));
- 9| 1| let baz = Foo(0);
- 10| 1| assert_ne!(baz, Foo(1));
- 11| 1| println!("{:?}", Foo(1));
- 12| 1| println!("{:?}", bar);
- 13| 1| println!("{:?}", baz);
- 14| 1|}
+ LL| |struct Foo(u32);
+ LL| |
+ LL| 1|fn main() {
+ LL| 1| let bar = Foo(1);
+ LL| 1| assert_eq!(bar, Foo(1));
+ LL| 1| let baz = Foo(0);
+ LL| 1| assert_ne!(baz, Foo(1));
+ LL| 1| println!("{:?}", Foo(1));
+ LL| 1| println!("{:?}", bar);
+ LL| 1| println!("{:?}", baz);
+ LL| 1|}