summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-multidispatch-tuple.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-multidispatch-tuple.rs')
-rw-r--r--src/test/ui/coherence/coherence-multidispatch-tuple.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/coherence/coherence-multidispatch-tuple.rs b/src/test/ui/coherence/coherence-multidispatch-tuple.rs
deleted file mode 100644
index fa1d4bbb4..000000000
--- a/src/test/ui/coherence/coherence-multidispatch-tuple.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-// run-pass
-#![allow(unused_imports)]
-// pretty-expanded FIXME #23616
-
-use std::fmt::Debug;
-use std::default::Default;
-
-// Test that an impl for homogeneous pairs does not conflict with a
-// heterogeneous pair.
-
-trait MyTrait {
- fn get(&self) -> usize;
-}
-
-impl<T> MyTrait for (T,T) {
- fn get(&self) -> usize { 0 }
-}
-
-impl MyTrait for (usize,isize) {
- fn get(&self) -> usize { 0 }
-}
-
-fn main() {
-}