mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 05:03:21 +00:00
11 lines
404 B
Text
11 lines
404 B
Text
error: large future with a size of 1026 bytes
|
|
--> tests/ui-toml/large_futures/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`
|
|
= help: to override `-D warnings` add `#[allow(clippy::large_futures)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|