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:
David Tolnay 2019-12-18 10:57:26 -08:00
parent 1d0b3999af
commit 7f943c1fcd
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
5 changed files with 28 additions and 26 deletions

View file

@ -0,0 +1,9 @@
use thiserror::Error;
#[derive(Error, Debug)]
#[error("...")]
pub struct ErrorStruct {
source: String,
}
fn main() {}