mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-05-07 21:17:58 +00:00
e49b6c708b
These emit a new error not relevant to Serde as of nightly-2018-12-29.
11 lines
128 B
Rust
11 lines
128 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Deserialize)]
|
|
struct S {
|
|
string: String,
|
|
slice: [u8],
|
|
}
|
|
|
|
fn main() {}
|