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,9 @@
#[macro_use]
extern crate serde_derive;
#[derive(Serialize, Deserialize)] //~ ERROR: custom derive attribute panicked
struct Test<'a> {
s: &'a str, //~^^ HELP: Serde does not support deserializing fields of type &str
}
fn main() {}