mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 21:53:23 +00:00
4f5a019d6e
Co-authored-by: Fridtjof Stoldt <xFrednet@gmail.com>
10 lines
304 B
Text
10 lines
304 B
Text
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
|
|
|