mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 08:18:03 +00:00
11 lines
229 B
Rust
11 lines
229 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Deserialize)] //~ ERROR: proc-macro derive panicked
|
|
struct Test<'a> {
|
|
#[serde(borrow = "")] //~^^ HELP: at least one lifetime must be borrowed
|
|
s: &'a str,
|
|
}
|
|
|
|
fn main() {}
|