summary refs log tree commit diff
path: root/src/test/ui/issues/issue-51154.stderr
blob: 3c3428f3096a8d282912dc512fe28bd1db9c2646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
   |
   = note: expected type parameter `F`
                     found closure `[closure@$DIR/issue-51154.rs:2:30: 2:35]`
   = help: every closure has a distinct type and so could not always match the caller-chosen type of parameter `F`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.