Files
serde/serde_derive/tests/compile-fail/str_ref_deser.rs
T
2017-01-08 00:11:11 -08:00

10 lines
238 B
Rust

#[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() {}