about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGeorg Semmler <georg_semmler_05@web.de>2019-09-22 12:59:10 +0200
committerGeorg Semmler <georg_semmler_05@web.de>2019-09-22 12:59:10 +0200
commit3ee292021d00857586af0d2ef1fa6c31f74181ce (patch)
tree63e23d45d99a77586fd501884b23ad5c1c846195 /src
parent31b301219f534090690674e43e05c3cbfd2d5005 (diff)
downloadrust-3ee292021d00857586af0d2ef1fa6c31f74181ce.tar.gz
rust-3ee292021d00857586af0d2ef1fa6c31f74181ce.zip
Fix some unused variable warnings
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/coherence/auxiliary/coherence_lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/coherence/auxiliary/coherence_lib.rs b/src/test/ui/coherence/auxiliary/coherence_lib.rs
index 9a5ec824306..c22819831ab 100644
--- a/src/test/ui/coherence/auxiliary/coherence_lib.rs
+++ b/src/test/ui/coherence/auxiliary/coherence_lib.rs
@@ -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);