summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unboxed-closures/non-tupled-arg-mismatch.stderr
blob: 9a24fb8c2beec57fcf2f38af5418ecde62272af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0308]: mismatched types
  --> $DIR/non-tupled-arg-mismatch.rs:6:5
   |
LL |     a(|_: usize| {});
   |     ^ types differ
   |
   = note: expected trait `Fn<usize>`
              found trait `Fn<(usize,)>`
note: required by a bound in `a`
  --> $DIR/non-tupled-arg-mismatch.rs:3:9
   |
LL | fn a<F: Fn<usize>>(f: F) {}
   |         ^^^^^^^^^ required by this bound in `a`

error: aborting due to previous error

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