Skip to content

Commit a3e6c19

Browse files
authored
Rollup merge of #89147 - b-naber:refs_in_check_const_value_eq, r=oli-obk
add case for checking const refs in check_const_value_eq Previously in `check_const_value_eq` we destructured `ConstValue::ByRef` instances, this didn't account for `ty::Ref`s however, which led to an ICE. Fixes #88876 Fixes #88384 r? `@oli-obk`
2 parents aca790b + 999888c commit a3e6c19

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed

compiler/rustc_middle/src/ty/relate.rs

+9
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,15 @@ fn check_const_value_eq<R: TypeRelation<'tcx>>(
639639
get_slice_bytes(&tcx, a_val) == get_slice_bytes(&tcx, b_val)
640640
}
641641

642+
(ConstValue::ByRef { alloc: alloc_a, .. }, ConstValue::ByRef { alloc: alloc_b, .. })
643+
if a.ty.is_ref() || b.ty.is_ref() =>
644+
{
645+
if a.ty.is_ref() && b.ty.is_ref() {
646+
alloc_a == alloc_b
647+
} else {
648+
false
649+
}
650+
}
642651
(ConstValue::ByRef { .. }, ConstValue::ByRef { .. }) => {
643652
let a_destructured = tcx.destructure_const(relation.param_env().and(a));
644653
let b_destructured = tcx.destructure_const(relation.param_env().and(b));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// check-pass
2+
3+
#![feature(fn_traits)]
4+
#![feature(adt_const_params)]
5+
//~^ WARNING the feature `adt_const_params` is incomplete
6+
7+
#[derive(PartialEq, Eq)]
8+
struct CompileTimeSettings{
9+
hooks: &'static[fn()],
10+
}
11+
12+
struct Foo<const T: CompileTimeSettings>;
13+
14+
impl<const T: CompileTimeSettings> Foo<T> {
15+
fn call_hooks(){
16+
}
17+
}
18+
19+
fn main(){
20+
const SETTINGS: CompileTimeSettings = CompileTimeSettings{
21+
hooks: &[],
22+
};
23+
24+
Foo::<SETTINGS>::call_hooks();
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
warning: the feature `adt_const_params` is incomplete and may not be safe to use and/or cause compiler crashes
2+
--> $DIR/refs_check_const_eq-issue-88384.rs:4:12
3+
|
4+
LL | #![feature(adt_const_params)]
5+
| ^^^^^^^^^^^^^^^^
6+
|
7+
= note: `#[warn(incomplete_features)]` on by default
8+
= note: see issue #44580 <https://github.com/rust-lang/rust/issues/44580> for more information
9+
10+
warning: 1 warning emitted
11+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// check-pass
2+
3+
#![allow(incomplete_features)]
4+
#![feature(adt_const_params)]
5+
6+
struct FooConst<const ARRAY: &'static [&'static str]> {}
7+
8+
const FOO_ARR: &[&'static str; 2] = &["Hello", "Friend"];
9+
10+
fn main() {
11+
let _ = FooConst::<FOO_ARR> {};
12+
}

0 commit comments

Comments
 (0)