]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/coverage-reports/expected_show_coverage.issue-83601.txt
Auto merge of #84904 - ssomers:btree_drop_kv_in_place, r=Mark-Simulacrum
[rust.git] / src / test / run-make-fulldeps / coverage-reports / expected_show_coverage.issue-83601.txt
1     1|       |// Shows that rust-lang/rust/83601 is resolved
2     2|       |
3     3|      3|#[derive(Debug, PartialEq, Eq)]
4                               ^2
5   ------------------
6   | <issue_83601::Foo as core::cmp::PartialEq>::eq:
7   |    3|      2|#[derive(Debug, PartialEq, Eq)]
8   ------------------
9   | Unexecuted instantiation: <issue_83601::Foo as core::cmp::PartialEq>::ne
10   ------------------
11     4|       |struct Foo(u32);
12     5|       |
13     6|      1|fn main() {
14     7|      1|    let bar = Foo(1);
15     8|      1|    assert_eq!(bar, Foo(1));
16     9|      1|    let baz = Foo(0);
17    10|      1|    assert_ne!(baz, Foo(1));
18    11|      1|    println!("{:?}", Foo(1));
19    12|      1|    println!("{:?}", bar);
20    13|      1|    println!("{:?}", baz);
21    14|      1|}
22