summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/coverage-reports/expected_show_coverage.issue-83601.txt
blob: de32c88b725dc1d2741a36fcf0ba8c23b484454d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
    1|       |// Shows that rust-lang/rust/83601 is resolved
    2|       |
    3|      3|#[derive(Debug, PartialEq, Eq)]
                              ^2
  ------------------
  | <issue_83601::Foo as core::cmp::PartialEq>::eq:
  |    3|      2|#[derive(Debug, PartialEq, Eq)]
  ------------------
  | Unexecuted instantiation: <issue_83601::Foo as core::cmp::PartialEq>::ne
  ------------------
    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|}