summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/suggest-boxed-trait-objects-instead-of-impl-trait.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/suggest-boxed-trait-objects-instead-of-impl-trait.fixed')
-rw-r--r--src/test/ui/mismatched_types/suggest-boxed-trait-objects-instead-of-impl-trait.fixed28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/ui/mismatched_types/suggest-boxed-trait-objects-instead-of-impl-trait.fixed b/src/test/ui/mismatched_types/suggest-boxed-trait-objects-instead-of-impl-trait.fixed
deleted file mode 100644
index f30feaed0..000000000
--- a/src/test/ui/mismatched_types/suggest-boxed-trait-objects-instead-of-impl-trait.fixed
+++ /dev/null
@@ -1,28 +0,0 @@
-// run-rustfix
-
-#![allow(dead_code)]
-
-struct S;
-struct Y;
-
-trait Trait {}
-
-impl Trait for S {}
-impl Trait for Y {}
-
-fn foo() -> Box<dyn Trait> {
- if true {
- Box::new(S)
- } else {
- Box::new(Y) //~ ERROR `if` and `else` have incompatible types
- }
-}
-
-fn bar() -> Box<dyn Trait> {
- match true {
- true => Box::new(S),
- false => Box::new(Y), //~ ERROR `match` arms have incompatible types
- }
-}
-
-fn main() {}