Skip to content

Commit 32d4e1c

Browse files
committed
Adjust tests for newly uplifted cast_ref_to_mut lint
1 parent 0169ace commit 32d4e1c

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

src/tools/miri/tests/fail/modifying_constants.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// This should fail even without validation/SB
22
//@compile-flags: -Zmiri-disable-validation -Zmiri-disable-stacked-borrows
33

4+
#![allow(cast_ref_to_mut)]
5+
46
fn main() {
57
let x = &1; // the `&1` is promoted to a constant, but it used to be that only the pointer is marked static, not the pointee
68
let y = unsafe { &mut *(x as *const i32 as *mut i32) };

src/tools/miri/tests/fail/stacked_borrows/shr_frozen_violation1.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(cast_ref_to_mut)]
2+
13
fn foo(x: &mut i32) -> i32 {
24
*x = 5;
35
unknown_code(&*x);

tests/ui/const-generics/issues/issue-100313.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ impl <const B: &'static bool> T<B> {
99
unsafe {
1010
*(B as *const bool as *mut bool) = false;
1111
//~^ ERROR evaluation of constant value failed [E0080]
12+
//~| ERROR casting `&T` to `&mut T` is undefined behavior
1213
}
1314
}
1415
}

tests/ui/const-generics/issues/issue-100313.stderr

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
error: casting `&T` to `&mut T` is undefined behavior, even if the reference is unused, consider instead using an `UnsafeCell`
2+
--> $DIR/issue-100313.rs:10:13
3+
|
4+
LL | *(B as *const bool as *mut bool) = false;
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6+
|
7+
= note: `#[deny(cast_ref_to_mut)]` on by default
8+
19
error[E0080]: evaluation of constant value failed
210
--> $DIR/issue-100313.rs:10:13
311
|
@@ -10,11 +18,11 @@ note: inside `T::<&true>::set_false`
1018
LL | *(B as *const bool as *mut bool) = false;
1119
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1220
note: inside `_`
13-
--> $DIR/issue-100313.rs:18:5
21+
--> $DIR/issue-100313.rs:19:5
1422
|
1523
LL | x.set_false();
1624
| ^^^^^^^^^^^^^
1725

18-
error: aborting due to previous error
26+
error: aborting due to 2 previous errors
1927

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

0 commit comments

Comments
 (0)