Files
rust/tests/ui/asm/x86_64/goto.stderr

23 lines
557 B
Plaintext
Raw Normal View History

2023-12-27 22:57:17 +00:00
warning: unreachable statement
--> $DIR/goto.rs:143:9
2023-12-27 22:57:17 +00:00
|
LL | / asm!(
LL | | "jmp {}",
LL | | label {
LL | | return;
LL | | },
LL | | options(noreturn)
LL | | );
| |_________- any code following this expression is unreachable
LL | unreachable!();
| ^^^^^^^^^^^^^^ unreachable statement
|
note: the lint level is defined here
--> $DIR/goto.rs:133:8
2023-12-27 22:57:17 +00:00
|
LL | #[warn(unreachable_code)]
| ^^^^^^^^^^^^^^^^
warning: 1 warning emitted