summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/unnecessary_box_returns/unnecessary_box_returns.stderr
blob: df9aa37ac10f4c774ff87e8f5117ea29c873fa7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: boxed return of the sized type `[u8; 64]`
  --> $DIR/unnecessary_box_returns.rs:3:11
   |
LL | fn f() -> Box<[u8; 64]> {
   |           ^^^^^^^^^^^^^ help: try: `[u8; 64]`
   |
   = help: changing this also requires a change to the return expressions in this function
   = note: `-D clippy::unnecessary-box-returns` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::unnecessary_box_returns)]`

error: aborting due to previous error