mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 22:07:37 +03:00
Change ui tests to work whether or not rust-src is installed
This commit is contained in:
parent
663d835689
commit
04b91d7646
8 changed files with 57 additions and 58 deletions
|
@ -1,10 +1,13 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct NotError;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
pub enum ErrorEnum {
|
||||
Broken {
|
||||
source: String,
|
||||
source: NotError,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue