Remove anonymous_parameters from unrelated test

This commit is contained in:
David Tolnay 2019-07-28 10:17:19 -07:00
parent 023525dbda
commit 6fd6972e8b
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -9,7 +9,7 @@ pub trait LolInto<T>: Sized {
}
pub trait LolFrom<T> {
fn from(T) -> Self;
fn from(_: T) -> Self;
}
impl<'a, T: ?Sized, U> LolInto<U> for &'a T where T: LolTo<U> {