Ignore unused struct in test_gen.rs

This commit is contained in:
David Tolnay 2016-07-17 21:10:00 -07:00
parent 334a6e788a
commit 13e1a129dd
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -56,6 +56,7 @@ enum EnumWith<T> {
}
#[derive(Serialize)]
#[allow(dead_code)]
struct MultipleRef<'a, 'b, 'c, T> where T: 'c, 'c: 'b, 'b: 'a {
t: T,
rrrt: &'a &'b &'c T,