summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-blanket-conflicts-with-specific.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-blanket-conflicts-with-specific.rs')
-rw-r--r--src/test/ui/coherence/coherence-blanket-conflicts-with-specific.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/coherence/coherence-blanket-conflicts-with-specific.rs b/src/test/ui/coherence/coherence-blanket-conflicts-with-specific.rs
deleted file mode 100644
index 5a562ff6a..000000000
--- a/src/test/ui/coherence/coherence-blanket-conflicts-with-specific.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-use std::fmt::Debug;
-use std::default::Default;
-
-// Test that a blank impl for all T conflicts with an impl for some
-// specific T.
-
-trait MyTrait {
- fn get(&self) -> usize;
-}
-
-impl<T> MyTrait for T {
- fn get(&self) -> usize { 0 }
-}
-
-struct MyType {
- dummy: usize
-}
-
-impl MyTrait for MyType {
-//~^ ERROR E0119
- fn get(&self) -> usize { self.dummy }
-}
-
-fn main() { }