rust/tests/ui/scalable-vectors/async.stderr
David Wood 4185e9f2ec
mir_transform: prohibit scalable vectors in async
Scalable vectors cannot be members of ADTs and thus cannot be kept over
await points in async functions.
2025-12-16 11:00:12 +00:00

8 lines
186 B
Text

error: scalable vectors cannot be held over await points
--> $DIR/async.rs:36:13
|
LL | let x = svdup_n_s32(1);
| ^
error: aborting due to 1 previous error