summaryrefslogtreecommitdiff
path: root/tests/ui/lint/issue-111359.stderr
blob: 2296d8413d6c3fcfdb9017e1bf090c0efe2fd8fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error: type does not implement `Debug`; consider adding `#[derive(Debug)]` or a manual implementation
  --> $DIR/issue-111359.rs:7:5
   |
LL |     pub struct BarPub;
   |     ^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/issue-111359.rs:1:8
   |
LL | #[deny(missing_debug_implementations)]
   |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: type could implement `Copy`; consider adding `impl Copy`
  --> $DIR/issue-111359.rs:7:5
   |
LL |     pub struct BarPub;
   |     ^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/issue-111359.rs:2:8
   |
LL | #[deny(missing_copy_implementations)]
   |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors