Files
rust/tests/ui/coroutine/too-live-local-in-immovable-gen.stderr
Esteban Küber 65a54a7f27 Tweak multispan rendering
Consider comments and bare delimiters the same as an "empty line" for purposes of hiding rendered code output of long multispans. This results in more aggressive shortening of rendered output without losing too much context, specially in `*.stderr` tests that have "hidden" comments.
2024-12-12 23:36:27 +00:00

16 lines
395 B
Plaintext

warning: unused coroutine that must be used
--> $DIR/too-live-local-in-immovable-gen.rs:8:22
|
LL | #[coroutine] static move || {
| ______________________^
... |
LL | | let _ = &a;
LL | | };
| |_________^
|
= note: coroutines are lazy and do nothing unless resumed
= note: `#[warn(unused_must_use)]` on by default
warning: 1 warning emitted