Consistent underscores in root directory

This commit is contained in:
David Tolnay
2017-01-25 20:45:33 -08:00
parent 9046e9d7a1
commit 7a2bfdc1dd
24 changed files with 3 additions and 3 deletions
@@ -0,0 +1,11 @@
#[macro_use]
extern crate serde_derive;
#[derive(Serialize)] //~ ERROR: custom derive attribute panicked
struct S {
#[serde(rename="x")]
#[serde(rename(deserialize="y"))] //~^^^ HELP: duplicate serde attribute `rename`
x: (),
}
fn main() {}