summaryrefslogtreecommitdiffstats
path: root/tests/run-make/coverage-reports/expected_show_coverage.issue-83601.txt
blob: 25c74ab2e70bc66b86fa0a17ea396006ea3ae100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
    1|       |// Shows that rust-lang/rust/83601 is resolved
    2|       |
    3|      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|}