Change ui tests to work whether or not rust-src is installed

This commit is contained in:
David Tolnay 2020-09-04 23:36:25 -07:00
parent 663d835689
commit 04b91d7646
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
8 changed files with 57 additions and 58 deletions

View file

@ -1,10 +1,13 @@
use thiserror::Error;
#[derive(Debug)]
pub struct NotError;
#[derive(Error, Debug)]
#[error("...")]
pub enum ErrorEnum {
Broken {
source: String,
source: NotError,
},
}