2016-09-28 11:55:54 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)] //~ ERROR: custom derive attribute panicked
|
|
|
|
struct Test<'a> {
|
2016-09-28 14:46:54 -05:00
|
|
|
s: &'a str, //~^^ HELP: Serde does not support deserializing fields of type &str
|
2016-09-28 11:55:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|