Update tests to new location of errors

This commit is contained in:
David Tolnay
2016-09-27 00:17:00 -07:00
parent 0c18c151e2
commit 40b874214a
3 changed files with 17 additions and 17 deletions
@@ -1,9 +1,9 @@
#![feature(custom_attribute, custom_derive, plugin)]
#![plugin(serde_macros)]
#[derive(Serialize, Deserialize)]
#[derive(Serialize, Deserialize)] //~ ERROR: Serde does not support deserializing fields of type &str
struct Test<'a> {
s: &'a str, //~ ERROR: Serde does not support deserializing fields of type &str
s: &'a str,
}
fn main() {}