summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/result_large_err/result_large_err.stderr
blob: cc603fc0cc049c76d1fabbe0fd1fa55b83f737a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: the `Err`-variant returned from this function is very large
  --> $DIR/result_large_err.rs:6:12
   |
LL | fn f2() -> Result<(), [u8; 512]> {
   |            ^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 512 bytes
   |
   = help: try reducing the size of `[u8; 512]`, for example by boxing large elements or replacing it with `Box<[u8; 512]>`
   = note: `-D clippy::result-large-err` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::result_large_err)]`

error: aborting due to 1 previous error