blob: 7e2718c9eac3eb789e9a7ad52af21018be90dd65 [file] [log] [blame]
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`.