rust/tests/ui/asm/fail-const-eval-issue-121099.stderr

16 lines
626 B
Plaintext

error[E0080]: attempt to shift left by `500_i32`, which would overflow
--> $DIR/fail-const-eval-issue-121099.rs:8:31
|
LL | global_asm!("/* {} */", const 1 << 500);
| ^^^^^^^^ evaluation of `{global_asm#0}::{constant#0}` failed here
error[E0080]: attempt to divide `1_i32` by zero
--> $DIR/fail-const-eval-issue-121099.rs:10:31
|
LL | global_asm!("/* {} */", const 1 / 0);
| ^^^^^ evaluation of `{global_asm#1}::{constant#0}` failed here
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0080`.