about summary refs log tree commit diff
path: root/tests/ui/asm/fail-const-eval-issue-121099.stderr
blob: 7e2718c9eac3eb789e9a7ad52af21018be90dd65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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`.