summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/trait-bounds-cant-coerce.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/trait-bounds-cant-coerce.rs')
-rw-r--r--src/test/ui/mismatched_types/trait-bounds-cant-coerce.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/mismatched_types/trait-bounds-cant-coerce.rs b/src/test/ui/mismatched_types/trait-bounds-cant-coerce.rs
deleted file mode 100644
index 882533992..000000000
--- a/src/test/ui/mismatched_types/trait-bounds-cant-coerce.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-trait Foo {
- fn dummy(&self) { }
-}
-
-fn a(_x: Box<dyn Foo + Send>) {
-}
-
-fn c(x: Box<dyn Foo + Sync + Send>) {
- a(x);
-}
-
-fn d(x: Box<dyn Foo>) {
- a(x); //~ ERROR mismatched types [E0308]
-}
-
-fn main() { }