Skip to content

Commit 5d6c730

Browse files
authored
Unrolled build for rust-lang#123675
Rollup merge of rust-lang#123675 - oli-obk:static_wf_ice, r=compiler-errors Taint const qualifs if a static is referenced that didn't pass wfcheck It is correct to only check the signature here, as the ICE is caused by `USE_WITH_ERROR` trying to allocate memory to store the result of `WITH_ERROR` before evaluating it. fixes rust-lang#123153
2 parents 3fba278 + 801413e commit 5d6c730

File tree

4 files changed

+63
-17
lines changed

4 files changed

+63
-17
lines changed

compiler/rustc_const_eval/src/transform/check_consts/check.rs

+5
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,11 @@ impl<'mir, 'tcx> Checker<'mir, 'tcx> {
331331
if self.tcx.is_thread_local_static(def_id) {
332332
self.tcx.dcx().span_bug(span, "tls access is checked in `Rvalue::ThreadLocalRef`");
333333
}
334+
if let Some(def_id) = def_id.as_local()
335+
&& let Err(guar) = self.tcx.at(span).check_well_formed(hir::OwnerId { def_id })
336+
{
337+
self.error_emitted = Some(guar);
338+
}
334339
self.check_op_spanned(ops::StaticAccess, span)
335340
}
336341

tests/crashes/123153.rs

-17
This file was deleted.

tests/ui/statics/unsized_type2.rs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//! This test used to actually start evaluating the static even though
2+
//! there were errors in typeck.
3+
//! issue: rust-lang/rust#123153
4+
5+
pub struct Foo {
6+
pub version: str,
7+
}
8+
9+
pub struct Bar {
10+
pub ok: &'static [&'static Bar],
11+
pub bad: &'static Foo,
12+
}
13+
14+
pub static WITH_ERROR: Foo = Foo { version: 0 };
15+
//~^ ERROR the size for values of type `str` cannot be known at compilation time
16+
//~| ERROR the size for values of type `str` cannot be known at compilation time
17+
//~| ERROR mismatched types
18+
19+
pub static USE_WITH_ERROR: Bar = Bar { ok: &[], bad: &WITH_ERROR };
20+
21+
fn main() {}

tests/ui/statics/unsized_type2.stderr

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
error[E0277]: the size for values of type `str` cannot be known at compilation time
2+
--> $DIR/unsized_type2.rs:14:24
3+
|
4+
LL | pub static WITH_ERROR: Foo = Foo { version: 0 };
5+
| ^^^ doesn't have a size known at compile-time
6+
|
7+
= help: within `Foo`, the trait `Sized` is not implemented for `str`, which is required by `Foo: Sized`
8+
note: required because it appears within the type `Foo`
9+
--> $DIR/unsized_type2.rs:5:12
10+
|
11+
LL | pub struct Foo {
12+
| ^^^
13+
14+
error[E0277]: the size for values of type `str` cannot be known at compilation time
15+
--> $DIR/unsized_type2.rs:14:30
16+
|
17+
LL | pub static WITH_ERROR: Foo = Foo { version: 0 };
18+
| ^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
19+
|
20+
= help: within `Foo`, the trait `Sized` is not implemented for `str`, which is required by `Foo: Sized`
21+
note: required because it appears within the type `Foo`
22+
--> $DIR/unsized_type2.rs:5:12
23+
|
24+
LL | pub struct Foo {
25+
| ^^^
26+
= note: constant expressions must have a statically known size
27+
28+
error[E0308]: mismatched types
29+
--> $DIR/unsized_type2.rs:14:45
30+
|
31+
LL | pub static WITH_ERROR: Foo = Foo { version: 0 };
32+
| ^ expected `str`, found integer
33+
34+
error: aborting due to 3 previous errors
35+
36+
Some errors have detailed explanations: E0277, E0308.
37+
For more information about an error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)