Delete serde_macros

This commit is contained in:
David Tolnay
2016-09-28 09:55:54 -07:00
parent 8b7b886036
commit 1b6fd5a362
23 changed files with 129 additions and 148 deletions
@@ -0,0 +1,11 @@
#![feature(rustc_macro)]
#[macro_use]
extern crate serde_derive;
#[derive(Serialize, Deserialize)] //~ ERROR: custom derive attribute panicked
struct Test<'a> {
s: &'a str, // ERROR: Serde does not support deserializing fields of type &str
}
fn main() {}