mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 13:57:38 +03:00
Restore UI test involving missing Display impl
This test existed prior to04b91d7646
. Since791a98eb93
, we can rely on rust-src being installed.
This commit is contained in:
parent
e9ea67c7e2
commit
4fe306f5c3
2 changed files with 17 additions and 0 deletions
9
tests/ui/missing-display.rs
Normal file
9
tests/ui/missing-display.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
pub enum MyError {
|
||||
First,
|
||||
Second,
|
||||
}
|
||||
|
||||
fn main() {}
|
8
tests/ui/missing-display.stderr
Normal file
8
tests/ui/missing-display.stderr
Normal file
|
@ -0,0 +1,8 @@
|
|||
error[E0277]: `MyError` doesn't implement `std::fmt::Display`
|
||||
--> tests/ui/missing-display.rs:4:1
|
||||
|
|
||||
4 | pub enum MyError {
|
||||
| ^^^^^^^^^^^^^^^^ `MyError` cannot be formatted with the default formatter
|
||||
|
|
||||
= help: the trait `std::fmt::Display` is not implemented for `MyError`
|
||||
= note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
|
Loading…
Add table
Add a link
Reference in a new issue