summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/suggest-closure-return-type-2.stderr
blob: 88bf263043d2c4745c206a0888218569cc2ce843 (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-2.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`.