serde/test_suite/tests/ui/precondition/deserialize_dst.rs
David Tolnay e49b6c708b
Add main function to ui tests without main
These emit a new error not relevant to Serde as of nightly-2018-12-29.
2018-12-29 00:18:55 -05:00

11 lines
128 B
Rust

#[macro_use]
extern crate serde_derive;
#[derive(Deserialize)]
struct S {
string: String,
slice: [u8],
}
fn main() {}