summaryrefslogtreecommitdiffstats
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, 14 insertions, 0 deletions
diff --git a/src/test/ui/suggestions/box-future-wrong-output.stderr b/src/test/ui/suggestions/box-future-wrong-output.stderr
new file mode 100644
index 000000000..e0c57af25
--- /dev/null
+++ b/src/test/ui/suggestions/box-future-wrong-output.stderr
@@ -0,0 +1,14 @@
+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`.