Combine the test suites

This commit is contained in:
David Tolnay
2017-01-25 20:27:40 -08:00
parent dbdfe4f306
commit 3e1e42ef9b
19 changed files with 10 additions and 20 deletions
@@ -0,0 +1,9 @@
#[macro_use]
extern crate serde_derive;
#[derive(Serialize, Deserialize)] //~ ERROR: custom derive attribute panicked
struct Test<'a> {
s: &'a str, //~^^ HELP: Serde does not support deserializing fields of type &str
}
fn main() {}