Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 39e189d

Browse files
committed
bless tests
1 parent 2117817 commit 39e189d

File tree

5 files changed

+136
-73
lines changed

5 files changed

+136
-73
lines changed

src/test/ui/consts/const-eval/validate_uninhabited_zsts.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | unsafe { std::mem::transmute(()) }
55
| ^^^^^^^^^^^^^^^^^^^^^^^
66
| |
77
| transmuting to uninhabited type
8-
| inside call to `foo` at $DIR/validate_uninhabited_zsts.rs:14:26
8+
| inside `FOO` at $DIR/validate_uninhabited_zsts.rs:14:26
99
...
1010
LL | const FOO: [Empty; 3] = [foo(); 3];
1111
| -----------------------------------

src/test/ui/consts/miri_unleashed/abi-mismatch.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LL | my_fn();
1717
| ^^^^^^^
1818
| |
1919
| calling a function with ABI C using caller ABI Rust
20-
| inside call to `call_rust_fn` at $DIR/abi-mismatch.rs:13:17
20+
| inside `VAL` at $DIR/abi-mismatch.rs:13:17
2121
...
2222
LL | const VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) });
2323
| --------------------------------------------------------------------------------------

src/test/ui/consts/miri_unleashed/drop.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LL | | }
1717
::: $DIR/drop.rs:23:1
1818
|
1919
LL | };
20-
| - inside call to `std::intrinsics::drop_in_place::<std::vec::Vec<i32>> - shim(Some(std::vec::Vec<i32>))` at $DIR/drop.rs:23:1
20+
| - inside `TEST_BAD` at $DIR/drop.rs:23:1
2121

2222
error: aborting due to previous error
2323

src/test/ui/consts/offset_from_ub.stderr

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | intrinsics::ptr_offset_from(self, origin)
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
| |
77
| ptr_offset_from cannot compute offset of pointers into different allocations.
8-
| inside call to `std::ptr::const_ptr::<impl *const Struct>::offset_from` at $DIR/offset_from_ub.rs:22:27
8+
| inside `DIFFERENT_ALLOC` at $DIR/offset_from_ub.rs:22:27
99
|
1010
::: $DIR/offset_from_ub.rs:16:1
1111
|
@@ -27,7 +27,7 @@ LL | intrinsics::ptr_offset_from(self, origin)
2727
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2828
| |
2929
| unable to turn bytes into a pointer
30-
| inside call to `std::ptr::const_ptr::<impl *const u8>::offset_from` at $DIR/offset_from_ub.rs:28:14
30+
| inside `NOT_PTR` at $DIR/offset_from_ub.rs:28:14
3131
|
3232
::: $DIR/offset_from_ub.rs:26:1
3333
|
@@ -44,7 +44,7 @@ LL | intrinsics::ptr_offset_from(self, origin)
4444
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4545
| |
4646
| exact_div: 1isize cannot be divided by 2isize without remainder
47-
| inside call to `std::ptr::const_ptr::<impl *const u16>::offset_from` at $DIR/offset_from_ub.rs:36:14
47+
| inside `NOT_MULTIPLE_OF_SIZE` at $DIR/offset_from_ub.rs:36:14
4848
|
4949
::: $DIR/offset_from_ub.rs:31:1
5050
|
@@ -64,7 +64,7 @@ LL | intrinsics::ptr_offset_from(self, origin)
6464
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6565
| |
6666
| invalid use of NULL pointer
67-
| inside call to `std::ptr::const_ptr::<impl *const u8>::offset_from` at $DIR/offset_from_ub.rs:42:14
67+
| inside `OFFSET_FROM_NULL` at $DIR/offset_from_ub.rs:42:14
6868
|
6969
::: $DIR/offset_from_ub.rs:39:1
7070
|
@@ -82,7 +82,7 @@ LL | intrinsics::ptr_offset_from(self, origin)
8282
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8383
| |
8484
| unable to turn bytes into a pointer
85-
| inside call to `std::ptr::const_ptr::<impl *const u8>::offset_from` at $DIR/offset_from_ub.rs:49:14
85+
| inside `DIFFERENT_INT` at $DIR/offset_from_ub.rs:49:14
8686
|
8787
::: $DIR/offset_from_ub.rs:45:1
8888
|

src/test/ui/consts/uninhabited-const-issue-61744.stderr

Lines changed: 128 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -4,76 +4,139 @@ error[E0080]: evaluation of constant value failed
44
LL | hint_unreachable()
55
| ------------------
66
| |
7-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
8-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
9-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
10-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
11-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
12-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
13-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
14-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
15-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
16-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
17-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
18-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
19-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
20-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
21-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
22-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
23-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
24-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
25-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
26-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
27-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
28-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
29-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
30-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
31-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
32-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
33-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
34-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
35-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
36-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
37-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
38-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
39-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
40-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
41-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
42-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
43-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
44-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
45-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
46-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
47-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
48-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
49-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
50-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
51-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
52-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
53-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
54-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
55-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
56-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
57-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
58-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
59-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
60-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
61-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
62-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
63-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
64-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
65-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
66-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
67-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
68-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
69-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
70-
| inside call to `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:4:5
7+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
8+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
9+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
10+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
11+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
12+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
13+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
14+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
15+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
16+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
17+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
18+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
19+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
20+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
21+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
22+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
23+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
24+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
25+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
26+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
27+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
28+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
29+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
30+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
31+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
32+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
33+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
34+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
35+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
36+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
37+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
38+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
39+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
40+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
41+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
42+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
43+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
44+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
45+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
46+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
47+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
48+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
49+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
50+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
51+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
52+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
53+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
54+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
55+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
56+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
57+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
58+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
59+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
60+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
61+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
62+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
63+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
64+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
65+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
66+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
67+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
68+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
69+
| inside `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:4:5
70+
| inside `fake_type::<i32>` at $DIR/uninhabited-const-issue-61744.rs:4:5
7171
...
7272
LL | fake_type()
7373
| ^^^^^^^^^^^
7474
| |
7575
| reached the configured maximum number of stack frames
76-
| inside call to `fake_type::<!>` at $DIR/uninhabited-const-issue-61744.rs:8:5
76+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
77+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
78+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
79+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
80+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
81+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
82+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
83+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
84+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
85+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
86+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
87+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
88+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
89+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
90+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
91+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
92+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
93+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
94+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
95+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
96+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
97+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
98+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
99+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
100+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
101+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
102+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
103+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
104+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
105+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
106+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
107+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
108+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
109+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
110+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
111+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
112+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
113+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
114+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
115+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
116+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
117+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
118+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
119+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
120+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
121+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
122+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
123+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
124+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
125+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
126+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
127+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
128+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
129+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
130+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
131+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
132+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
133+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
134+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
135+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
136+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
137+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
138+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
139+
| inside `hint_unreachable` at $DIR/uninhabited-const-issue-61744.rs:8:5
77140

78141
error: any use of this value will cause an error
79142
--> $DIR/uninhabited-const-issue-61744.rs:12:36

0 commit comments

Comments
 (0)