File: result_no_display.stderr

package info (click to toggle)
rust-cxx 1.0.141-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,632 kB
  • sloc: cpp: 1,573; javascript: 124; sh: 11; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
error[E0277]: `NonError` doesn't implement `std::fmt::Display`
 --> tests/ui/result_no_display.rs:4:19
  |
4 |         fn f() -> Result<()>;
  |                   ^^^^^^^^^^ `NonError` cannot be formatted with the default formatter
  |
  = help: the trait `std::fmt::Display` is not implemented for `NonError`
  = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead