Rename test suite crate

This commit is contained in:
David Tolnay
2017-01-25 20:40:13 -08:00
parent 9b9b697eb1
commit 68aab2424f
24 changed files with 4 additions and 4 deletions
@@ -0,0 +1,10 @@
#[macro_use]
extern crate serde_derive;
#[derive(Serialize)] //~ ERROR: custom derive attribute panicked
#[serde(abc="xyz")] //~^ HELP: unknown serde container attribute `abc`
struct A {
x: u32,
}
fn main() { }