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