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,9 +1,12 @@
use thiserror::Error;
#[derive(Debug)]
struct NotError;
#[derive(Error, Debug)]
#[error("...")]
pub struct ErrorStruct {
source: String,
source: NotError,
}
fn main() {}