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
9
tests/ui/source-struct-not-error.rs
Normal file
9
tests/ui/source-struct-not-error.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
pub struct ErrorStruct {
|
||||
source: String,
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue