summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/suggest-closure-return-type-3.stderr
blob: bc4107528d2745f06a48efc44194ba5b5284c3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0282]: type annotations needed for `[_; 0]`
  --> $DIR/suggest-closure-return-type-3.rs:4:18
   |
LL |     unbound_drop(|| []);
   |                  ^^ -- type must be known at this point
   |
help: try giving this closure an explicit return type
   |
LL |     unbound_drop(|| -> [_; 0] { [] });
   |                     +++++++++++    +

error: aborting due to previous error

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