summaryrefslogtreecommitdiffstats
path: root/tests/ui/mir/mir_detects_invalid_ops.stderr
blob: 0fe56f417251585e60b0abe84cc203ea62cf64c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: this operation will panic at runtime
  --> $DIR/mir_detects_invalid_ops.rs:11:14
   |
LL |     let _z = 1 / y;
   |              ^^^^^ attempt to divide `1_i32` by zero
   |
   = note: `#[deny(unconditional_panic)]` on by default

error: this operation will panic at runtime
  --> $DIR/mir_detects_invalid_ops.rs:16:14
   |
LL |     let _z = 1 % y;
   |              ^^^^^ attempt to calculate the remainder of `1_i32` with a divisor of zero

error: aborting due to 2 previous errors