Skip to content

Commit 3ee2920

Browse files
committed
Fix some unused variable warnings
1 parent 31b3012 commit 3ee2920

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/ui/coherence/auxiliary/coherence_lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ pub trait Remote {
55
}
66

77
pub trait Remote1<T> {
8-
fn foo(&self, t: T) { }
8+
fn foo(&self, _t: T) { }
99
}
1010

1111
pub trait Remote2<T, U> {
12-
fn foo(&self, t: T, u: U) { }
12+
fn foo(&self, _t: T, _u: U) { }
1313
}
1414

1515
pub struct Pair<T,U>(T,U);

0 commit comments

Comments
 (0)