Skip to content

Commit 9973a46

Browse files
committed
add test ensuring we detect a static actually having a mutable reference
1 parent 2611fac commit 9973a46

File tree

2 files changed

+27
-8
lines changed

2 files changed

+27
-8
lines changed

tests/ui/consts/const-mut-refs/mut_ref_in_final_dynamic_check.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
// normalize-stderr-test "(the raw bytes of the constant) \(size: [0-9]*, align: [0-9]*\)" -> "$1 (size: $$SIZE, align: $$ALIGN)"
2-
// normalize-stderr-test "([0-9a-f][0-9a-f] |╾─*ALLOC[0-9]+(\+[a-z0-9]+)?(<imm>)?─*╼ )+ *│.*" -> "HEX_DUMP"
2+
// normalize-stderr-test "( 0x[0-9a-f][0-9a-f] │)? ([0-9a-f][0-9a-f] |__ |╾─*ALLOC[0-9]+(\+[a-z0-9]+)?(<imm>)?─*╼ )+ *│.*" -> " HEX_DUMP"
3+
// normalize-stderr-test "HEX_DUMP\s*\n\s*HEX_DUMP" -> "HEX_DUMP"
34
#![feature(const_mut_refs, const_refs_to_static)]
45
#![feature(raw_ref_op)]
56

7+
use std::sync::Mutex;
8+
69
// This file checks that our dynamic checks catch things that the static checks miss.
710
// We do not have static checks for these, because we do not look into function bodies.
811
// We treat all functions as not returning a mutable reference, because there is no way to
@@ -35,4 +38,9 @@ const fn helper_dangling() -> Option<&'static mut i32> { unsafe {
3538
const DANGLING: Option<&mut i32> = helper_dangling(); //~ ERROR encountered dangling pointer
3639
static DANGLING_STATIC: Option<&mut i32> = helper_dangling(); //~ ERROR encountered dangling pointer
3740

41+
// Variant of the real-world case in <https://github.com/rust-lang/rust/issues/120450>.
42+
static mut MUT_ARRAY: &mut [u8] = &mut [42];
43+
static MUTEX: Mutex<&mut [u8]> = Mutex::new(unsafe { &mut *MUT_ARRAY }); //~ ERROR it is undefined behavior to use this value
44+
//~^ encountered mutable reference
45+
3846
fn main() {}

tests/ui/consts/const-mut-refs/mut_ref_in_final_dynamic_check.stderr

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0080]: it is undefined behavior to use this value
2-
--> $DIR/mut_ref_in_final_dynamic_check.rs:17:1
2+
--> $DIR/mut_ref_in_final_dynamic_check.rs:20:1
33
|
44
LL | const MUT: Option<&mut i32> = helper();
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<enum-variant(Some)>.0: encountered mutable reference in a `const` or `static`
@@ -10,7 +10,7 @@ LL | const MUT: Option<&mut i32> = helper();
1010
}
1111

1212
error[E0080]: it is undefined behavior to use this value
13-
--> $DIR/mut_ref_in_final_dynamic_check.rs:19:1
13+
--> $DIR/mut_ref_in_final_dynamic_check.rs:22:1
1414
|
1515
LL | static MUT_STATIC: Option<&mut i32> = helper();
1616
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<enum-variant(Some)>.0: encountered mutable reference in a `const` or `static`
@@ -21,7 +21,7 @@ LL | static MUT_STATIC: Option<&mut i32> = helper();
2121
}
2222

2323
error[E0080]: it is undefined behavior to use this value
24-
--> $DIR/mut_ref_in_final_dynamic_check.rs:26:1
24+
--> $DIR/mut_ref_in_final_dynamic_check.rs:29:1
2525
|
2626
LL | const INT2PTR: Option<&mut i32> = helper_int2ptr();
2727
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<enum-variant(Some)>.0: encountered a dangling reference (0x2a[noalloc] has no provenance)
@@ -32,7 +32,7 @@ LL | const INT2PTR: Option<&mut i32> = helper_int2ptr();
3232
}
3333

3434
error[E0080]: it is undefined behavior to use this value
35-
--> $DIR/mut_ref_in_final_dynamic_check.rs:28:1
35+
--> $DIR/mut_ref_in_final_dynamic_check.rs:31:1
3636
|
3737
LL | static INT2PTR_STATIC: Option<&mut i32> = helper_int2ptr();
3838
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<enum-variant(Some)>.0: encountered a dangling reference (0x2a[noalloc] has no provenance)
@@ -43,17 +43,28 @@ LL | static INT2PTR_STATIC: Option<&mut i32> = helper_int2ptr();
4343
}
4444

4545
error: encountered dangling pointer in final value of constant
46-
--> $DIR/mut_ref_in_final_dynamic_check.rs:35:1
46+
--> $DIR/mut_ref_in_final_dynamic_check.rs:38:1
4747
|
4848
LL | const DANGLING: Option<&mut i32> = helper_dangling();
4949
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5050

5151
error: encountered dangling pointer in final value of static
52-
--> $DIR/mut_ref_in_final_dynamic_check.rs:36:1
52+
--> $DIR/mut_ref_in_final_dynamic_check.rs:39:1
5353
|
5454
LL | static DANGLING_STATIC: Option<&mut i32> = helper_dangling();
5555
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5656

57-
error: aborting due to 6 previous errors
57+
error[E0080]: it is undefined behavior to use this value
58+
--> $DIR/mut_ref_in_final_dynamic_check.rs:43:1
59+
|
60+
LL | static MUTEX: Mutex<&mut [u8]> = Mutex::new(unsafe { &mut *MUT_ARRAY });
61+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .data.value: encountered mutable reference in a `const` or `static`
62+
|
63+
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
64+
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
65+
HEX_DUMP
66+
}
67+
68+
error: aborting due to 7 previous errors
5869

5970
For more information about this error, try `rustc --explain E0080`.

0 commit comments

Comments
 (0)