summaryrefslogtreecommitdiffstats
path: root/vendor/displaydoc/tests/std/multi_line.stderr
blob: 5e41e5428e1d9ab72b7b11061d8b3ecac474a1b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: proc-macro derive panicked
  --> $DIR/multi_line.rs:23:10
   |
23 | #[derive(Display)]
   |          ^^^^^^^
   |
   = help: message: Multi-line comments are disabled by default by displaydoc. Please consider using block doc comments (/** */) or adding the #[ignore_extra_doc_attributes] attribute to your type next to the derive.

error[E0277]: `TestType` doesn't implement `std::fmt::Display`
  --> $DIR/multi_line.rs:34:44
   |
34 | static_assertions::assert_impl_all!(label; TestType, core::fmt::Display);
   | -------------------------------------------^^^^^^^^----------------------
   | |                                          |
   | |                                          `TestType` cannot be formatted with the default formatter
   | required by this bound in `assert_impl_all`
   |
   = help: the trait `std::fmt::Display` is not implemented for `TestType`
   = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead