about summary refs log tree commit diff
path: root/src/test/ui/suggestions/box-future-wrong-output.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/box-future-wrong-output.stderr')
-rw-r--r--src/test/ui/suggestions/box-future-wrong-output.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/suggestions/box-future-wrong-output.stderr b/src/test/ui/suggestions/box-future-wrong-output.stderr
deleted file mode 100644
index e0c57af25b3..00000000000
--- a/src/test/ui/suggestions/box-future-wrong-output.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error[E0308]: mismatched types
-  --> $DIR/box-future-wrong-output.rs:20:39
-   |
-LL |     let _: BoxFuture<'static, bool> = async {}.boxed();
-   |            ------------------------   ^^^^^^^^^^^^^^^^ expected `bool`, found `()`
-   |            |
-   |            expected due to this
-   |
-   = note: expected struct `Pin<Box<(dyn Future<Output = bool> + Send + 'static)>>`
-              found struct `Pin<Box<dyn Future<Output = ()> + Send>>`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.