]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-8460-const.opt.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-8460-const.opt.stderr
CommitLineData
74b04a01
XL
1error: this arithmetic operation will overflow
2 --> $DIR/issue-8460-const.rs:14:36
3 |
4LL | assert!(thread::spawn(move|| { isize::MIN / -1; }).join().is_err());
1b1a35ee 5 | ^^^^^^^^^^^^^^^ attempt to compute `isize::MIN / -1_isize`, which would overflow
74b04a01
XL
6 |
7 = note: `#[deny(arithmetic_overflow)]` on by default
8
9error: this arithmetic operation will overflow
10 --> $DIR/issue-8460-const.rs:16:36
11 |
12LL | assert!(thread::spawn(move|| { i8::MIN / -1; }).join().is_err());
1b1a35ee 13 | ^^^^^^^^^^^^ attempt to compute `i8::MIN / -1_i8`, which would overflow
74b04a01
XL
14
15error: this arithmetic operation will overflow
16 --> $DIR/issue-8460-const.rs:18:36
17 |
18LL | assert!(thread::spawn(move|| { i16::MIN / -1; }).join().is_err());
1b1a35ee 19 | ^^^^^^^^^^^^^ attempt to compute `i16::MIN / -1_i16`, which would overflow
74b04a01
XL
20
21error: this arithmetic operation will overflow
22 --> $DIR/issue-8460-const.rs:20:36
23 |
24LL | assert!(thread::spawn(move|| { i32::MIN / -1; }).join().is_err());
1b1a35ee 25 | ^^^^^^^^^^^^^ attempt to compute `i32::MIN / -1_i32`, which would overflow
74b04a01
XL
26
27error: this arithmetic operation will overflow
28 --> $DIR/issue-8460-const.rs:22:36
29 |
30LL | assert!(thread::spawn(move|| { i64::MIN / -1; }).join().is_err());
1b1a35ee 31 | ^^^^^^^^^^^^^ attempt to compute `i64::MIN / -1_i64`, which would overflow
74b04a01
XL
32
33error: this arithmetic operation will overflow
34 --> $DIR/issue-8460-const.rs:24:36
35 |
36LL | assert!(thread::spawn(move|| { i128::MIN / -1; }).join().is_err());
1b1a35ee 37 | ^^^^^^^^^^^^^^ attempt to compute `i128::MIN / -1_i128`, which would overflow
74b04a01
XL
38
39error: this operation will panic at runtime
40 --> $DIR/issue-8460-const.rs:26:36
41 |
42LL | assert!(thread::spawn(move|| { 1isize / 0; }).join().is_err());
1b1a35ee 43 | ^^^^^^^^^^ attempt to divide `1_isize` by zero
74b04a01
XL
44 |
45 = note: `#[deny(unconditional_panic)]` on by default
46
47error: this operation will panic at runtime
48 --> $DIR/issue-8460-const.rs:28:36
49 |
50LL | assert!(thread::spawn(move|| { 1i8 / 0; }).join().is_err());
1b1a35ee 51 | ^^^^^^^ attempt to divide `1_i8` by zero
74b04a01
XL
52
53error: this operation will panic at runtime
54 --> $DIR/issue-8460-const.rs:30:36
55 |
56LL | assert!(thread::spawn(move|| { 1i16 / 0; }).join().is_err());
1b1a35ee 57 | ^^^^^^^^ attempt to divide `1_i16` by zero
74b04a01
XL
58
59error: this operation will panic at runtime
60 --> $DIR/issue-8460-const.rs:32:36
61 |
62LL | assert!(thread::spawn(move|| { 1i32 / 0; }).join().is_err());
1b1a35ee 63 | ^^^^^^^^ attempt to divide `1_i32` by zero
74b04a01
XL
64
65error: this operation will panic at runtime
66 --> $DIR/issue-8460-const.rs:34:36
67 |
68LL | assert!(thread::spawn(move|| { 1i64 / 0; }).join().is_err());
1b1a35ee 69 | ^^^^^^^^ attempt to divide `1_i64` by zero
74b04a01
XL
70
71error: this operation will panic at runtime
72 --> $DIR/issue-8460-const.rs:36:36
73 |
74LL | assert!(thread::spawn(move|| { 1i128 / 0; }).join().is_err());
1b1a35ee 75 | ^^^^^^^^^ attempt to divide `1_i128` by zero
74b04a01
XL
76
77error: this arithmetic operation will overflow
78 --> $DIR/issue-8460-const.rs:38:36
79 |
80LL | assert!(thread::spawn(move|| { isize::MIN % -1; }).join().is_err());
1b1a35ee 81 | ^^^^^^^^^^^^^^^ attempt to compute the remainder of `isize::MIN % -1_isize`, which would overflow
74b04a01
XL
82
83error: this arithmetic operation will overflow
84 --> $DIR/issue-8460-const.rs:40:36
85 |
86LL | assert!(thread::spawn(move|| { i8::MIN % -1; }).join().is_err());
1b1a35ee 87 | ^^^^^^^^^^^^ attempt to compute the remainder of `i8::MIN % -1_i8`, which would overflow
74b04a01
XL
88
89error: this arithmetic operation will overflow
90 --> $DIR/issue-8460-const.rs:42:36
91 |
92LL | assert!(thread::spawn(move|| { i16::MIN % -1; }).join().is_err());
1b1a35ee 93 | ^^^^^^^^^^^^^ attempt to compute the remainder of `i16::MIN % -1_i16`, which would overflow
74b04a01
XL
94
95error: this arithmetic operation will overflow
96 --> $DIR/issue-8460-const.rs:44:36
97 |
98LL | assert!(thread::spawn(move|| { i32::MIN % -1; }).join().is_err());
1b1a35ee 99 | ^^^^^^^^^^^^^ attempt to compute the remainder of `i32::MIN % -1_i32`, which would overflow
74b04a01
XL
100
101error: this arithmetic operation will overflow
102 --> $DIR/issue-8460-const.rs:46:36
103 |
104LL | assert!(thread::spawn(move|| { i64::MIN % -1; }).join().is_err());
1b1a35ee 105 | ^^^^^^^^^^^^^ attempt to compute the remainder of `i64::MIN % -1_i64`, which would overflow
74b04a01
XL
106
107error: this arithmetic operation will overflow
108 --> $DIR/issue-8460-const.rs:48:36
109 |
110LL | assert!(thread::spawn(move|| { i128::MIN % -1; }).join().is_err());
1b1a35ee 111 | ^^^^^^^^^^^^^^ attempt to compute the remainder of `i128::MIN % -1_i128`, which would overflow
74b04a01
XL
112
113error: this operation will panic at runtime
114 --> $DIR/issue-8460-const.rs:50:36
115 |
116LL | assert!(thread::spawn(move|| { 1isize % 0; }).join().is_err());
1b1a35ee 117 | ^^^^^^^^^^ attempt to calculate the remainder of `1_isize` with a divisor of zero
74b04a01
XL
118
119error: this operation will panic at runtime
120 --> $DIR/issue-8460-const.rs:52:36
121 |
122LL | assert!(thread::spawn(move|| { 1i8 % 0; }).join().is_err());
1b1a35ee 123 | ^^^^^^^ attempt to calculate the remainder of `1_i8` with a divisor of zero
74b04a01
XL
124
125error: this operation will panic at runtime
126 --> $DIR/issue-8460-const.rs:54:36
127 |
128LL | assert!(thread::spawn(move|| { 1i16 % 0; }).join().is_err());
1b1a35ee 129 | ^^^^^^^^ attempt to calculate the remainder of `1_i16` with a divisor of zero
74b04a01
XL
130
131error: this operation will panic at runtime
132 --> $DIR/issue-8460-const.rs:56:36
133 |
134LL | assert!(thread::spawn(move|| { 1i32 % 0; }).join().is_err());
1b1a35ee 135 | ^^^^^^^^ attempt to calculate the remainder of `1_i32` with a divisor of zero
74b04a01
XL
136
137error: this operation will panic at runtime
138 --> $DIR/issue-8460-const.rs:58:36
139 |
140LL | assert!(thread::spawn(move|| { 1i64 % 0; }).join().is_err());
1b1a35ee 141 | ^^^^^^^^ attempt to calculate the remainder of `1_i64` with a divisor of zero
74b04a01
XL
142
143error: this operation will panic at runtime
144 --> $DIR/issue-8460-const.rs:60:36
145 |
146LL | assert!(thread::spawn(move|| { 1i128 % 0; }).join().is_err());
1b1a35ee 147 | ^^^^^^^^^ attempt to calculate the remainder of `1_i128` with a divisor of zero
74b04a01
XL
148
149error: aborting due to 24 previous errors
150