You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/ui/consts/const-eval/const_panic.stderr
+6-6
Original file line number
Diff line number
Diff line change
@@ -10,23 +10,23 @@ error[E0080]: evaluation of constant value failed
10
10
--> $DIR/const_panic.rs:9:16
11
11
|
12
12
LL | const Z2: () = std::panic!();
13
-
| ^^^^^^^^^^^^^ panic: explicit panic
13
+
| ^^^^^^^^^^^^^ explicit panic
14
14
|
15
15
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `std::panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::unreachable_2015` which comes from the expansion of the macro `std::unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
24
24
25
25
error[E0080]: evaluation of constant value failed
26
26
--> $DIR/const_panic.rs:15:15
27
27
|
28
28
LL | const X: () = std::unimplemented!();
29
-
| ^^^^^^^^^^^^^^^^^^^^^ panic: not implemented
29
+
| ^^^^^^^^^^^^^^^^^^^^^ not implemented
30
30
|
31
31
= note: this error originates in the macro `std::unimplemented` (in Nightly builds, run with -Z macro-backtrace for more info)
32
32
@@ -58,23 +58,23 @@ error[E0080]: evaluation of constant value failed
58
58
--> $DIR/const_panic.rs:27:21
59
59
|
60
60
LL | const Z2_CORE: () = core::panic!();
61
-
| ^^^^^^^^^^^^^^ panic: explicit panic
61
+
| ^^^^^^^^^^^^^^ explicit panic
62
62
|
63
63
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `core::panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::unreachable_2015` which comes from the expansion of the macro `core::unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
72
72
73
73
error[E0080]: evaluation of constant value failed
74
74
--> $DIR/const_panic.rs:33:20
75
75
|
76
76
LL | const X_CORE: () = core::unimplemented!();
77
-
| ^^^^^^^^^^^^^^^^^^^^^^ panic: not implemented
77
+
| ^^^^^^^^^^^^^^^^^^^^^^ not implemented
78
78
|
79
79
= note: this error originates in the macro `core::unimplemented` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/const-eval/const_panic_2021.stderr
+6-6
Original file line number
Diff line number
Diff line change
@@ -10,23 +10,23 @@ error[E0080]: evaluation of constant value failed
10
10
--> $DIR/const_panic_2021.rs:9:15
11
11
|
12
12
LL | const B: () = std::panic!();
13
-
| ^^^^^^^^^^^^^ panic: explicit panic
13
+
| ^^^^^^^^^^^^^ explicit panic
14
14
|
15
15
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `std::panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::unreachable_2021` which comes from the expansion of the macro `std::unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
24
24
25
25
error[E0080]: evaluation of constant value failed
26
26
--> $DIR/const_panic_2021.rs:15:15
27
27
|
28
28
LL | const D: () = std::unimplemented!();
29
-
| ^^^^^^^^^^^^^^^^^^^^^ panic: not implemented
29
+
| ^^^^^^^^^^^^^^^^^^^^^ not implemented
30
30
|
31
31
= note: this error originates in the macro `std::unimplemented` (in Nightly builds, run with -Z macro-backtrace for more info)
32
32
@@ -50,23 +50,23 @@ error[E0080]: evaluation of constant value failed
50
50
--> $DIR/const_panic_2021.rs:24:20
51
51
|
52
52
LL | const B_CORE: () = core::panic!();
53
-
| ^^^^^^^^^^^^^^ panic: explicit panic
53
+
| ^^^^^^^^^^^^^^ explicit panic
54
54
|
55
55
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `core::panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::unreachable_2021` which comes from the expansion of the macro `core::unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
64
64
65
65
error[E0080]: evaluation of constant value failed
66
66
--> $DIR/const_panic_2021.rs:30:20
67
67
|
68
68
LL | const D_CORE: () = core::unimplemented!();
69
-
| ^^^^^^^^^^^^^^^^^^^^^^ panic: not implemented
69
+
| ^^^^^^^^^^^^^^^^^^^^^^ not implemented
70
70
|
71
71
= note: this error originates in the macro `core::unimplemented` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::unreachable_2015` which comes from the expansion of the macro `unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
16
16
17
17
error[E0080]: evaluation of constant value failed
18
18
--> $DIR/const_panic_libcore_bin.rs:14:15
19
19
|
20
20
LL | const X: () = unimplemented!();
21
-
| ^^^^^^^^^^^^^^^^ panic: not implemented
21
+
| ^^^^^^^^^^^^^^^^ not implemented
22
22
|
23
23
= note: this error originates in the macro `unimplemented` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/const-eval/panic-assoc-never-type.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of constant value failed
2
2
--> $DIR/panic-assoc-never-type.rs:9:21
3
3
|
4
4
LL | const VOID: ! = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/const-eval/panic-never-type.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of constant value failed
2
2
--> $DIR/panic-never-type.rs:4:17
3
3
|
4
4
LL | const VOID: ! = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/issue-66693-panic-in-array-len.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ error[E0080]: evaluation of constant value failed
10
10
--> $DIR/issue-66693-panic-in-array-len.rs:10:21
11
11
|
12
12
LL | let _ = [false; panic!()];
13
-
| ^^^^^^^^ panic: explicit panic
13
+
| ^^^^^^^^ explicit panic
14
14
|
15
15
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/issue-66693.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ error[E0080]: evaluation of constant value failed
18
18
--> $DIR/issue-66693.rs:16:15
19
19
|
20
20
LL | const _: () = panic!();
21
-
| ^^^^^^^^ panic: explicit panic
21
+
| ^^^^^^^^ explicit panic
22
22
|
23
23
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-called-fn.noopt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-called-fn.rs:10:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-called-fn.opt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-called-fn.rs:10:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-closure.noopt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-closure.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-closure.opt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-closure.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-drop.noopt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-drop.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-drop.opt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-drop.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-fn.noopt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-fn.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-fn.opt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-fn.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-fnptr-in-const.noopt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Late::<i32>::FAIL` failed
2
2
--> $DIR/collect-in-dead-fnptr-in-const.rs:9:22
3
3
|
4
4
LL | const FAIL: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-fnptr-in-const.opt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Late::<i32>::FAIL` failed
2
2
--> $DIR/collect-in-dead-fnptr-in-const.rs:9:22
3
3
|
4
4
LL | const FAIL: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-fnptr.noopt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-fnptr.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/consts/required-consts/collect-in-dead-fnptr.opt.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ error[E0080]: evaluation of `Fail::<i32>::C` failed
2
2
--> $DIR/collect-in-dead-fnptr.rs:9:19
3
3
|
4
4
LL | const C: () = panic!();
5
-
| ^^^^^^^^ panic: explicit panic
5
+
| ^^^^^^^^ explicit panic
6
6
|
7
7
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
0 commit comments