]> git.lizzy.rs Git - rust.git/blob - src/test/ui/missing_debug_impls.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / missing_debug_impls.stderr
1 error: type does not implement `fmt::Debug`; consider adding #[derive(Debug)] or a manual implementation
2   --> $DIR/missing_debug_impls.rs:17:1
3    |
4 LL | pub enum A {} //~ ERROR type does not implement `fmt::Debug`
5    | ^^^^^^^^^^^^^
6    |
7 note: lint level defined here
8   --> $DIR/missing_debug_impls.rs:12:9
9    |
10 LL | #![deny(missing_debug_implementations)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: type does not implement `fmt::Debug`; consider adding #[derive(Debug)] or a manual implementation
14   --> $DIR/missing_debug_impls.rs:30:1
15    |
16 LL | pub struct Foo; //~ ERROR type does not implement `fmt::Debug`
17    | ^^^^^^^^^^^^^^^
18
19 error: aborting due to 2 previous errors
20