2025-03-29 17:30:11 +01:00
|
|
|
error: the `naked_asm!` macro can only be used in functions marked with `#[unsafe(naked)]`
|
2024-12-18 22:05:27 +01:00
|
|
|
--> $DIR/naked-asm-outside-naked-fn.rs:20:5
|
2024-09-10 14:42:17 +02:00
|
|
|
|
|
2025-03-29 17:30:11 +01:00
|
|
|
LL | naked_asm!("")
|
|
|
|
| ^^^^^^^^^^^^^^
|
2024-09-10 14:42:17 +02:00
|
|
|
|
2025-03-29 17:30:11 +01:00
|
|
|
error: the `naked_asm!` macro can only be used in functions marked with `#[unsafe(naked)]`
|
2024-12-18 22:05:27 +01:00
|
|
|
--> $DIR/naked-asm-outside-naked-fn.rs:25:9
|
2024-09-10 14:42:17 +02:00
|
|
|
|
|
2025-03-29 17:30:11 +01:00
|
|
|
LL | (|| naked_asm!(""))()
|
|
|
|
| ^^^^^^^^^^^^^^
|
2024-09-10 14:42:17 +02:00
|
|
|
|
2025-03-29 17:30:11 +01:00
|
|
|
error: the `naked_asm!` macro can only be used in functions marked with `#[unsafe(naked)]`
|
2024-12-18 22:05:27 +01:00
|
|
|
--> $DIR/naked-asm-outside-naked-fn.rs:31:9
|
2024-09-10 14:42:17 +02:00
|
|
|
|
|
2025-03-29 17:30:11 +01:00
|
|
|
LL | naked_asm!("");
|
|
|
|
| ^^^^^^^^^^^^^^
|
2024-09-10 14:42:17 +02:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|