mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
Split source-not-error ui test for structs and enums
This eliminates potential flakiness if parallel rustc were to compile thw two impls in different threads, affecting the order in which the two errors are emitted.
This commit is contained in:
parent
1d0b3999af
commit
7f943c1fcd
5 changed files with 28 additions and 26 deletions
11
tests/ui/source-enum-not-error.rs
Normal file
11
tests/ui/source-enum-not-error.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
pub enum ErrorEnum {
|
||||
Broken {
|
||||
source: String,
|
||||
},
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue