summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/large_futures/large_futures.stderr
blob: b92734de2f08c7ff93861caf8b8e1d30e32ecd3d (plain)
1
2
3
4
5
6
7
8
9
10
error: large future with a size of 1026 bytes
  --> $DIR/large_futures.rs:18:5
   |
LL |     should_warn().await;
   |     ^^^^^^^^^^^^^ help: consider `Box::pin` on it: `Box::pin(should_warn())`
   |
   = note: `-D clippy::large-futures` implied by `-D warnings`

error: aborting due to previous error