Skip to content

Commit

Permalink
Remove anonymous_parameters from unrelated test
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 28, 2019
1 parent 023525d commit 6fd6972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/ui/error-codes/e0119/auxiliary/issue-23563-a.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
Expand Down

0 comments on commit 6fd6972

Please sign in to comment.