Files
rust/tests/ui/abi/cannot-be-coroutine.x64_win.stderr
2025-06-24 14:40:11 +02:00

24 lines
553 B
Plaintext

error: functions with the "x86-interrupt" ABI cannot be `async`
--> $DIR/cannot-be-coroutine.rs:52:1
|
LL | async extern "x86-interrupt" fn x86() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: remove the `async` keyword from this definiton
|
LL - async extern "x86-interrupt" fn x86() {
LL + extern "x86-interrupt" fn x86() {
|
error: requires `ResumeTy` lang_item
--> $DIR/cannot-be-coroutine.rs:32:19
|
LL | async fn vanilla(){
| ___________________^
LL | |
LL | | }
| |_^
error: aborting due to 2 previous errors