summaryrefslogtreecommitdiffstats
path: root/tests/ui/fn/fn-trait-formatting.stderr
blob: 45d543bda5323ffe0176335e593bb022760b7fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
error[E0308]: mismatched types
  --> $DIR/fn-trait-formatting.rs:6:17
   |
LL |     let _: () = Box::new(|_: isize| {}) as Box<dyn FnOnce(isize)>;
   |            --   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found `Box<dyn FnOnce(isize)>`
   |            |
   |            expected due to this
   |
   = note: expected unit type `()`
                 found struct `Box<dyn FnOnce(isize)>`
help: use parentheses to call this trait object
   |
LL |     let _: () = (Box::new(|_: isize| {}) as Box<dyn FnOnce(isize)>)(/* isize */);
   |                 +                                                 ++++++++++++++

error[E0308]: mismatched types
  --> $DIR/fn-trait-formatting.rs:10:17
   |
LL |     let _: () = Box::new(|_: isize, isize| {}) as Box<dyn Fn(isize, isize)>;
   |            --   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found `Box<dyn Fn(isize, isize)>`
   |            |
   |            expected due to this
   |
   = note: expected unit type `()`
                 found struct `Box<dyn Fn(isize, isize)>`
help: use parentheses to call this trait object
   |
LL |     let _: () = (Box::new(|_: isize, isize| {}) as Box<dyn Fn(isize, isize)>)(/* isize */, /* isize */);
   |                 +                                                           +++++++++++++++++++++++++++

error[E0308]: mismatched types
  --> $DIR/fn-trait-formatting.rs:14:17
   |
LL |     let _: () = Box::new(|| -> isize { unimplemented!() }) as Box<dyn FnMut() -> isize>;
   |            --   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found `Box<dyn FnMut() -> isize>`
   |            |
   |            expected due to this
   |
   = note: expected unit type `()`
                 found struct `Box<dyn FnMut() -> isize>`

error[E0277]: expected a `Fn<(isize,)>` closure, found `{integer}`
  --> $DIR/fn-trait-formatting.rs:19:14
   |
LL |     needs_fn(1);
   |     -------- ^ expected an `Fn<(isize,)>` closure, found `{integer}`
   |     |
   |     required by a bound introduced by this call
   |
   = help: the trait `Fn<(isize,)>` is not implemented for `{integer}`
note: required by a bound in `needs_fn`
  --> $DIR/fn-trait-formatting.rs:1:31
   |
LL | fn needs_fn<F>(x: F) where F: Fn(isize) -> isize {}
   |                               ^^^^^^^^^^^^^^^^^^ required by this bound in `needs_fn`

error: aborting due to 4 previous errors

Some errors have detailed explanations: E0277, E0308.
For more information about an error, try `rustc --explain E0277`.