Fix some unused variable warnings
This commit is contained in:
parent
31b301219f
commit
3ee292021d
@ -5,11 +5,11 @@ pub trait Remote {
|
||||
}
|
||||
|
||||
pub trait Remote1<T> {
|
||||
fn foo(&self, t: T) { }
|
||||
fn foo(&self, _t: T) { }
|
||||
}
|
||||
|
||||
pub trait Remote2<T, U> {
|
||||
fn foo(&self, t: T, u: U) { }
|
||||
fn foo(&self, _t: T, _u: U) { }
|
||||
}
|
||||
|
||||
pub struct Pair<T,U>(T,U);
|
||||
|
Loading…
x
Reference in New Issue
Block a user