summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-overlap-messages.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-overlap-messages.rs')
-rw-r--r--src/test/ui/coherence/coherence-overlap-messages.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/ui/coherence/coherence-overlap-messages.rs b/src/test/ui/coherence/coherence-overlap-messages.rs
deleted file mode 100644
index 1258a2371..000000000
--- a/src/test/ui/coherence/coherence-overlap-messages.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-trait Foo { fn foo() {} }
-
-impl<T> Foo for T {}
-impl<U> Foo for U {}
-//~^ ERROR E0119
-
-
-trait Bar { fn bar() {} }
-
-impl<T> Bar for (T, u8) {}
-impl<T> Bar for (u8, T) {}
-//~^ ERROR E0119
-
-trait Baz<T> { fn baz() {} }
-
-impl<T> Baz<u8> for T {}
-impl<T> Baz<T> for u8 {}
-//~^ ERROR E0119
-
-trait Quux<U, V> { fn quux() {} }
-
-impl<T, U, V> Quux<U, V> for T {}
-impl<T, U> Quux<U, U> for T {}
-//~^ ERROR E0119
-impl<T, V> Quux<T, V> for T {}
-//~^ ERROR E0119
-
-fn main() {}