summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-51154.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-51154.stderr')
-rw-r--r--tests/ui/issues/issue-51154.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-51154.stderr b/tests/ui/issues/issue-51154.stderr
new file mode 100644
index 000000000..d8a833a86
--- /dev/null
+++ b/tests/ui/issues/issue-51154.stderr
@@ -0,0 +1,19 @@
+error[E0308]: mismatched types
+ --> $DIR/issue-51154.rs:2:30
+ |
+LL | fn foo<F: FnMut()>() {
+ | - this type parameter
+LL | let _: Box<F> = Box::new(|| ());
+ | -------- ^^^^^ expected type parameter `F`, found closure
+ | |
+ | arguments to this function are incorrect
+ |
+ = note: expected type parameter `F`
+ found closure `[closure@$DIR/issue-51154.rs:2:30: 2:32]`
+ = help: every closure has a distinct type and so could not always match the caller-chosen type of parameter `F`
+note: associated function defined here
+ --> $SRC_DIR/alloc/src/boxed.rs:LL:COL
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.